-- MySQL dump 10.13  Distrib 5.7.23-23, for Linux (x86_64)
--
-- Host: localhost    Database: assarbbq_ping-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_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_commentmeta`
--

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

--
-- Table structure for table `wp_comments`
--

DROP TABLE IF EXISTS `wp_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_comments` (
  `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0',
  `comment_author` tinytext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_content` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT '0',
  `comment_approved` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'comment',
  `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`comment_ID`),
  KEY `comment_post_ID` (`comment_post_ID`),
  KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  KEY `comment_date_gmt` (`comment_date_gmt`),
  KEY `comment_parent` (`comment_parent`),
  KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

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

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

DROP TABLE IF EXISTS `wp_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_links` (
  `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_image` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_target` varchar(25) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_description` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_visible` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'Y',
  `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1',
  `link_rating` int(11) NOT NULL DEFAULT '0',
  `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `link_rel` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_notes` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `link_rss` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

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

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

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

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

LOCK TABLES `wp_options` WRITE;
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` VALUES (1,'siteurl','http://demoweblinks.in/ping','yes'),(2,'home','http://demoweblinks.in/ping','yes'),(3,'blogname','Ping','yes'),(4,'blogdescription','Just another WordPress site','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','sonus90@outlook.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','0','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'),(29,'rewrite_rules','a:144:{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:16:\"featured_item/?$\";s:33:\"index.php?post_type=featured_item\";s:46:\"featured_item/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_type=featured_item&feed=$matches[1]\";s:41:\"featured_item/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_type=featured_item&feed=$matches[1]\";s:33:\"featured_item/page/([0-9]{1,})/?$\";s:51:\"index.php?post_type=featured_item&paged=$matches[1]\";s:32:\"blocks/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:42:\"blocks/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:62:\"blocks/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"blocks/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"blocks/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:38:\"blocks/.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:21:\"blocks/(.+?)/embed/?$\";s:39:\"index.php?blocks=$matches[1]&embed=true\";s:25:\"blocks/(.+?)/trackback/?$\";s:33:\"index.php?blocks=$matches[1]&tb=1\";s:33:\"blocks/(.+?)/page/?([0-9]{1,})/?$\";s:46:\"index.php?blocks=$matches[1]&paged=$matches[2]\";s:40:\"blocks/(.+?)/comment-page-([0-9]{1,})/?$\";s:46:\"index.php?blocks=$matches[1]&cpage=$matches[2]\";s:29:\"blocks/(.+?)(?:/([0-9]+))?/?$\";s:45:\"index.php?blocks=$matches[1]&page=$matches[2]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:57:\"block_categories/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?block_categories=$matches[1]&feed=$matches[2]\";s:52:\"block_categories/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?block_categories=$matches[1]&feed=$matches[2]\";s:33:\"block_categories/([^/]+)/embed/?$\";s:49:\"index.php?block_categories=$matches[1]&embed=true\";s:45:\"block_categories/([^/]+)/page/?([0-9]{1,})/?$\";s:56:\"index.php?block_categories=$matches[1]&paged=$matches[2]\";s:27:\"block_categories/([^/]+)/?$\";s:38:\"index.php?block_categories=$matches[1]\";s:41:\"featured_item/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:51:\"featured_item/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:71:\"featured_item/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"featured_item/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"featured_item/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:47:\"featured_item/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:30:\"featured_item/([^/]+)/embed/?$\";s:46:\"index.php?featured_item=$matches[1]&embed=true\";s:34:\"featured_item/([^/]+)/trackback/?$\";s:40:\"index.php?featured_item=$matches[1]&tb=1\";s:54:\"featured_item/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?featured_item=$matches[1]&feed=$matches[2]\";s:49:\"featured_item/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?featured_item=$matches[1]&feed=$matches[2]\";s:42:\"featured_item/([^/]+)/page/?([0-9]{1,})/?$\";s:53:\"index.php?featured_item=$matches[1]&paged=$matches[2]\";s:49:\"featured_item/([^/]+)/comment-page-([0-9]{1,})/?$\";s:53:\"index.php?featured_item=$matches[1]&cpage=$matches[2]\";s:38:\"featured_item/([^/]+)(?:/([0-9]+))?/?$\";s:52:\"index.php?featured_item=$matches[1]&page=$matches[2]\";s:30:\"featured_item/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:40:\"featured_item/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:60:\"featured_item/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"featured_item/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"featured_item/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:36:\"featured_item/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:63:\"featured_item_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:61:\"index.php?featured_item_category=$matches[1]&feed=$matches[2]\";s:58:\"featured_item_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:61:\"index.php?featured_item_category=$matches[1]&feed=$matches[2]\";s:39:\"featured_item_category/([^/]+)/embed/?$\";s:55:\"index.php?featured_item_category=$matches[1]&embed=true\";s:51:\"featured_item_category/([^/]+)/page/?([0-9]{1,})/?$\";s:62:\"index.php?featured_item_category=$matches[1]&paged=$matches[2]\";s:33:\"featured_item_category/([^/]+)/?$\";s:44:\"index.php?featured_item_category=$matches[1]\";s:58:\"featured_item_tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:56:\"index.php?featured_item_tag=$matches[1]&feed=$matches[2]\";s:53:\"featured_item_tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:56:\"index.php?featured_item_tag=$matches[1]&feed=$matches[2]\";s:34:\"featured_item_tag/([^/]+)/embed/?$\";s:50:\"index.php?featured_item_tag=$matches[1]&embed=true\";s:46:\"featured_item_tag/([^/]+)/page/?([0-9]{1,})/?$\";s:57:\"index.php?featured_item_tag=$matches[1]&paged=$matches[2]\";s:28:\"featured_item_tag/([^/]+)/?$\";s:39:\"index.php?featured_item_tag=$matches[1]\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:38:\"index.php?&page_id=6&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:7:{i:0;s:19:\"chaty/cht-icons.php\";i:1;s:36:\"contact-form-7/wp-contact-form-7.php\";i:2;s:73:\"country-phone-field-contact-form-7/country-phone-field-contact-form-7.php\";i:3;s:45:\"everest-counter-lite/everest-counter-lite.php\";i:4;s:34:\"feeds-for-youtube/youtube-feed.php\";i:5;s:63:\"social-icons-widget-by-wpzoom/social-icons-widget-by-wpzoom.php\";i:6;s:37:\"user-role-editor/user-role-editor.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','flatsome','yes'),(41,'stylesheet','flatsome','yes'),(42,'comment_registration','0','yes'),(43,'html_type','text/html','yes'),(44,'use_trackback','0','yes'),(45,'default_role','editor','yes'),(46,'db_version','51917','yes'),(47,'uploads_use_yearmonth_folders','1','yes'),(48,'upload_path','','yes'),(49,'blog_public','0','yes'),(50,'default_link_category','2','yes'),(51,'show_on_front','page','yes'),(52,'tag_base','','yes'),(53,'show_avatars','1','yes'),(54,'avatar_rating','G','yes'),(55,'upload_url_path','','yes'),(56,'thumbnail_size_w','150','yes'),(57,'thumbnail_size_h','150','yes'),(58,'thumbnail_crop','1','yes'),(59,'medium_size_w','300','yes'),(60,'medium_size_h','300','yes'),(61,'avatar_default','mystery','yes'),(62,'large_size_w','1024','yes'),(63,'large_size_h','1024','yes'),(64,'image_default_link_type','none','yes'),(65,'image_default_size','','yes'),(66,'image_default_align','','yes'),(67,'close_comments_for_old_posts','0','yes'),(68,'close_comments_days_old','14','yes'),(69,'thread_comments','1','yes'),(70,'thread_comments_depth','5','yes'),(71,'page_comments','0','yes'),(72,'comments_per_page','50','yes'),(73,'default_comments_page','newest','yes'),(74,'comment_order','asc','yes'),(75,'sticky_posts','a:0:{}','yes'),(76,'widget_categories','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(77,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(78,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(79,'uninstall_plugins','a:3:{s:52:\"fuse-social-floating-sidebar/fuse_social_sidebar.php\";a:2:{i:0;s:8:\"Freemius\";i:1;s:22:\"_uninstall_plugin_hook\";}s:34:\"feeds-for-youtube/youtube-feed.php\";s:13:\"sby_uninstall\";s:37:\"user-role-editor/user-role-editor.php\";a:2:{i:0;s:16:\"User_Role_Editor\";i:1;s:9:\"uninstall\";}}','no'),(80,'timezone_string','','yes'),(81,'page_for_posts','0','yes'),(82,'page_on_front','6','yes'),(83,'default_post_format','0','yes'),(84,'link_manager_enabled','0','yes'),(85,'finished_splitting_shared_terms','1','yes'),(86,'site_icon','53','yes'),(87,'medium_large_size_w','768','yes'),(88,'medium_large_size_h','0','yes'),(89,'wp_page_for_privacy_policy','3','yes'),(90,'show_comments_cookies_opt_in','1','yes'),(91,'admin_email_lifespan','1658923543','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:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:86:{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:27:\"manage_youtube_feed_options\";b:1;s:15:\"edit_sby_videos\";b:1;s:15:\"read_sby_videos\";b:1;s:17:\"delete_sby_videos\";b:1;s:22:\"edit_others_sby_videos\";b:1;s:18:\"publish_sby_videos\";b:1;s:23:\"read_private_sby_videos\";b:1;s:25:\"delete_private_sby_videos\";b:1;s:27:\"delete_published_sby_videos\";b:1;s:24:\"delete_others_sby_videos\";b:1;s:23:\"edit_private_sby_videos\";b:1;s:25:\"edit_published_sby_videos\";b:1;s:14:\"ure_edit_roles\";b:1;s:16:\"ure_create_roles\";b:1;s:16:\"ure_delete_roles\";b:1;s:23:\"ure_create_capabilities\";b:1;s:23:\"ure_delete_capabilities\";b:1;s:18:\"ure_manage_options\";b:1;s:15:\"ure_reset_roles\";b:1;s:24:\"wpcf7_edit_contact_forms\";b:1;s:12:\"create_posts\";b:1;s:17:\"install_languages\";b:1;s:14:\"resume_plugins\";b:1;s:13:\"resume_themes\";b:1;s:23:\"view_site_health_checks\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:56:{s:12:\"create_posts\";b:1;s:19:\"delete_others_pages\";b:1;s:19:\"delete_others_posts\";b:1;s:24:\"delete_others_sby_videos\";b:1;s:12:\"delete_pages\";b:1;s:12:\"delete_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:20:\"delete_private_posts\";b:1;s:25:\"delete_private_sby_videos\";b:1;s:22:\"delete_published_pages\";b:1;s:22:\"delete_published_posts\";b:1;s:27:\"delete_published_sby_videos\";b:1;s:17:\"delete_sby_videos\";b:1;s:14:\"edit_dashboard\";b:1;s:10:\"edit_files\";b:1;s:17:\"edit_others_pages\";b:1;s:17:\"edit_others_posts\";b:1;s:22:\"edit_others_sby_videos\";b:1;s:10:\"edit_pages\";b:1;s:10:\"edit_posts\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"edit_private_posts\";b:1;s:23:\"edit_private_sby_videos\";b:1;s:20:\"edit_published_pages\";b:1;s:20:\"edit_published_posts\";b:1;s:25:\"edit_published_sby_videos\";b:1;s:15:\"edit_sby_videos\";b:1;s:18:\"edit_theme_options\";b:1;s:7:\"level_0\";b:1;s:7:\"level_1\";b:1;s:8:\"level_10\";b:1;s:7:\"level_2\";b:1;s:7:\"level_3\";b:1;s:7:\"level_4\";b:1;s:7:\"level_5\";b:1;s:7:\"level_6\";b:1;s:7:\"level_7\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:13:\"publish_pages\";b:1;s:13:\"publish_posts\";b:1;s:18:\"publish_sby_videos\";b:1;s:4:\"read\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:23:\"read_private_sby_videos\";b:1;s:15:\"read_sby_videos\";b:1;s:13:\"resume_themes\";b:1;s:13:\"switch_themes\";b:1;s:15:\"unfiltered_html\";b:1;s:17:\"unfiltered_upload\";b:1;s:11:\"update_core\";b:1;s:13:\"update_themes\";b:1;s:12:\"upload_files\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:16:{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:15:\"edit_sby_videos\";b:1;s:15:\"read_sby_videos\";b:1;s:17:\"delete_sby_videos\";b:1;s:18:\"publish_sby_videos\";b:1;s:27:\"delete_published_sby_videos\";b:1;s:25:\"edit_published_sby_videos\";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:7:{s:18:\"edit_theme_options\";b:1;s:14:\"install_themes\";b:1;s:7:\"level_0\";b:1;s:4:\"read\";b:1;s:13:\"resume_themes\";b:1;s:13:\"switch_themes\";b:1;s:13:\"update_themes\";b:1;}}}','yes'),(101,'fresh_site','0','yes'),(102,'widget_block','a:4:{i:2;a:1:{s:7:\"content\";s:19:\"<!-- wp:search /-->\";}i:3;a:1:{s:7:\"content\";s:154:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Posts</h2><!-- /wp:heading --><!-- wp:latest-posts /--></div><!-- /wp:group -->\";}i:4;a:1:{s:7:\"content\";s:227:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Comments</h2><!-- /wp:heading --><!-- wp:latest-comments {\"displayAvatar\":false,\"displayDate\":false,\"displayExcerpt\":false} /--></div><!-- /wp:group -->\";}s:12:\"_multiwidget\";i:1;}','yes'),(103,'sidebars_widgets','a:5:{s:19:\"wp_inactive_widgets\";a:0:{}s:12:\"sidebar-main\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:16:\"sidebar-footer-1\";a:1:{i:0;s:14:\"block_widget-2\";}s:16:\"sidebar-footer-2\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(104,'cron','a:10:{i:1652987145;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:1652991701;a:1:{s:12:\"sby_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;}}}i:1653005144;a:1:{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;}}}i:1653005145;a:3:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1653048344;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:1653048355;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:1653048358;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:1653134744;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:1653285600;a:1:{s:23:\"sby_notification_update\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:9:\"sbyweekly\";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:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(114,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(115,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(118,'theme_mods_twentytwentyone','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1643371684;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:9:\"sidebar-2\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}}}}','yes'),(119,'recovery_keys','a:0:{}','yes'),(120,'https_detection_errors','a:0:{}','yes'),(134,'db_upgraded','','yes'),(136,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:19:\"sonus90@outlook.com\";s:7:\"version\";s:5:\"5.9.3\";s:9:\"timestamp\";i:1649750967;}','no'),(138,'can_compress_scripts','0','no'),(157,'finished_updating_comment_type','1','yes'),(160,'current_theme','Flatsome','yes'),(161,'theme_mods_flatsome','a:93:{i:0;b:0;s:17:\"flatsome_fallback\";i:0;s:20:\"topbar_elements_left\";a:0:{}s:21:\"topbar_elements_right\";a:0:{}s:20:\"header_elements_left\";a:0:{}s:21:\"header_elements_right\";a:2:{i:0;s:3:\"nav\";i:1;s:8:\"button-1\";}s:27:\"header_elements_bottom_left\";a:0:{}s:29:\"header_elements_bottom_center\";a:0:{}s:28:\"header_elements_bottom_right\";a:0:{}s:27:\"header_mobile_elements_left\";a:1:{i:0;s:9:\"menu-icon\";}s:28:\"header_mobile_elements_right\";a:0:{}s:26:\"header_mobile_elements_top\";a:0:{}s:14:\"mobile_sidebar\";a:2:{i:0;s:8:\"button-1\";i:1;s:3:\"nav\";}s:14:\"product_layout\";s:19:\"right-sidebar-small\";s:23:\"payment_icons_placement\";s:6:\"footer\";s:14:\"follow_twitter\";s:10:\"http://url\";s:15:\"follow_facebook\";s:10:\"http://url\";s:16:\"follow_instagram\";s:10:\"http://url\";s:12:\"follow_email\";s:10:\"your@email\";s:16:\"flatsome_version\";i:3;s:24:\"portfolio_archive_filter\";s:4:\"left\";s:13:\"type_headings\";a:5:{s:11:\"font-family\";s:4:\"Lato\";s:7:\"variant\";s:3:\"900\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";i:900;s:10:\"font-style\";s:6:\"normal\";}s:10:\"type_texts\";a:5:{s:11:\"font-family\";s:4:\"Lato\";s:7:\"variant\";s:7:\"regular\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";i:400;s:10:\"font-style\";s:6:\"normal\";}s:8:\"type_nav\";a:5:{s:11:\"font-family\";s:4:\"Lato\";s:7:\"variant\";s:3:\"900\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";i:900;s:10:\"font-style\";s:6:\"normal\";}s:8:\"type_alt\";a:2:{s:11:\"font-family\";s:14:\"Dancing Script\";s:7:\"variant\";s:3:\"400\";}s:14:\"pages_template\";s:7:\"default\";s:11:\"site_loader\";s:0:\"\";s:19:\"flatsome_db_version\";s:6:\"3.15.3\";s:18:\"nav_menu_locations\";a:2:{s:7:\"primary\";i:3;s:14:\"primary_mobile\";i:3;}s:7:\"backups\";N;s:9:\"smof_init\";s:31:\"Fri, 28 Jan 2022 12:08:05 +0000\";s:18:\"custom_css_post_id\";i:32;s:15:\"html_custom_css\";s:496:\".home-button:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 36px !important;\n    height: 36px;\n    top: 9px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n*, *:before, *:after {\n    -webkit-box-sizing: border-box;\n    box-sizing: border-box;\n}\n}\n\n\n\n\";s:11:\"topbar_show\";b:0;s:13:\"header_height\";s:2:\"83\";s:9:\"header_bg\";s:21:\"rgba(255,255,255,0.9)\";s:25:\"header_height_transparent\";s:3:\"328\";s:11:\"preset_demo\";s:27:\"header-simple-right-buttons\";s:22:\"topbar_elements_center\";a:0:{}s:29:\"header_mobile_elements_bottom\";a:0:{}s:13:\"logo_position\";s:4:\"left\";s:10:\"logo_width\";s:3:\"176\";s:12:\"topbar_color\";s:4:\"dark\";s:9:\"topbar_bg\";s:0:\"\";s:13:\"nav_style_top\";s:7:\"divided\";s:12:\"header_width\";s:9:\"container\";s:12:\"header_color\";s:5:\"light\";s:20:\"header_bg_img_repeat\";s:8:\"repeat-x\";s:17:\"box_shadow_header\";b:0;s:9:\"nav_style\";s:0:\"\";s:8:\"nav_size\";s:0:\"\";s:13:\"nav_uppercase\";b:1;s:14:\"type_nav_color\";s:0:\"\";s:20:\"type_nav_color_hover\";s:0:\"\";s:21:\"header_bg_transparent\";s:0:\"\";s:27:\"header_bg_transparent_shade\";b:0;s:20:\"header_bottom_height\";s:2:\"10\";s:15:\"nav_position_bg\";s:7:\"#f1f1f1\";s:16:\"nav_style_bottom\";s:0:\"\";s:15:\"nav_size_bottom\";s:0:\"\";s:20:\"nav_uppercase_bottom\";b:1;s:18:\"nav_position_color\";s:5:\"light\";s:21:\"type_nav_bottom_color\";s:0:\"\";s:27:\"type_nav_bottom_color_hover\";s:0:\"\";s:15:\"header_button_1\";s:11:\"Get Started\";s:15:\"header_button_2\";s:4:\"Join\";s:21:\"header_button_2_color\";s:5:\"plain\";s:21:\"header_button_1_color\";s:9:\"secondary\";s:20:\"header_button_1_size\";s:5:\"large\";s:27:\"header_button_1_depth_hover\";s:1:\"0\";s:14:\"header_divider\";b:0;s:13:\"color_primary\";s:7:\"#8196f8\";s:8:\"footer_1\";b:1;s:16:\"footer_1_columns\";s:1:\"1\";s:16:\"footer_left_text\";s:0:\"\";s:9:\"site_logo\";i:51;s:16:\"site_logo_slogan\";b:0;s:12:\"logo_padding\";s:2:\"10\";s:10:\"nav_height\";s:2:\"16\";s:8:\"nav_push\";s:1:\"0\";s:25:\"text_transform_navigation\";s:4:\"none\";s:22:\"text_transform_buttons\";s:4:\"none\";s:13:\"color_success\";s:7:\"#557caf\";s:10:\"site_width\";s:4:\"1200\";s:9:\"type_size\";s:3:\"100\";s:16:\"type_size_mobile\";s:3:\"100\";s:11:\"body_layout\";s:10:\"full-width\";s:11:\"color_alert\";s:7:\"#f4f4f4\";s:21:\"header_button_1_depth\";s:1:\"0\";s:17:\"flatsome_lightbox\";b:0;s:20:\"header_button_1_link\";s:38:\"http://demoweblinks.in/ping/#contactus\";s:21:\"header_button_1_style\";s:0:\"\";s:27:\"header_button_1_link_target\";s:6:\"_blank\";}','yes'),(162,'theme_switched','','yes'),(163,'widget_flatsome_recent_posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(164,'widget_block_widget','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:5:\"block\";s:6:\"footer\";}s:12:\"_multiwidget\";i:1;}','yes'),(201,'widget_recent-comments','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(202,'widget_recent-posts','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(246,'recently_activated','a:0:{}','yes'),(254,'flatsome_update_cache','a:2:{s:12:\"last_checked\";i:1652961951;s:7:\"version\";s:6:\"3.15.3\";}','yes'),(256,'wpcf7','a:2:{s:7:\"version\";s:7:\"5.5.6.1\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1643375374;s:7:\"version\";s:5:\"5.5.4\";s:11:\"count_valid\";i:1;s:13:\"count_invalid\";i:0;}}','yes'),(284,'_transient_health-check-site-status-result','{\"good\":14,\"recommended\":5,\"critical\":1}','yes'),(299,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(736,'fs_active_plugins','O:8:\"stdClass\":0:{}','yes'),(737,'fs_debug_mode','','yes'),(738,'fs_accounts','a:6:{s:21:\"id_slug_type_path_map\";a:1:{i:2701;a:2:{s:4:\"slug\";s:28:\"fuse-social-floating-sidebar\";s:4:\"type\";s:6:\"plugin\";}}s:11:\"plugin_data\";a:1:{s:28:\"fuse-social-floating-sidebar\";a:16:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:9:\"prev_path\";s:52:\"fuse-social-floating-sidebar/fuse_social_sidebar.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1645418413;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:1;s:16:\"sdk_last_version\";N;s:11:\"sdk_version\";s:5:\"2.4.2\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";N;s:14:\"plugin_version\";s:5:\"5.4.1\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";b:1;s:4:\"host\";s:15:\"demoweblinks.in\";s:9:\"server_ip\";s:38:\"2409:4073:29a:6898:6542:7a10:97a9:3a63\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1645418413;s:7:\"version\";s:5:\"5.4.1\";}s:15:\"prev_is_premium\";b:0;s:12:\"is_anonymous\";a:3:{s:2:\"is\";b:1;s:9:\"timestamp\";i:1645418425;s:7:\"version\";s:5:\"5.4.1\";}}}s:13:\"file_slug_map\";a:1:{s:52:\"fuse-social-floating-sidebar/fuse_social_sidebar.php\";s:28:\"fuse-social-floating-sidebar\";}s:7:\"plugins\";a:1:{s:28:\"fuse-social-floating-sidebar\";O:9:\"FS_Plugin\":23:{s:16:\"parent_plugin_id\";N;s:5:\"title\";s:28:\"Fuse Social Floating Sidebar\";s:4:\"slug\";s:28:\"fuse-social-floating-sidebar\";s:12:\"premium_slug\";s:36:\"fuse-social-floating-sidebar-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";b:0;s:19:\"is_wp_org_compliant\";b:1;s:22:\"premium_releases_count\";N;s:4:\"file\";s:52:\"fuse-social-floating-sidebar/fuse_social_sidebar.php\";s:7:\"version\";s:5:\"5.4.1\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:8:\"FUSE PRO\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:10:\"public_key\";s:32:\"pk_70ed0c631ac1720148be7f62dca7e\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"2701\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:0;}}s:9:\"unique_id\";s:32:\"991bbe79b829da27b2647508f35dee68\";s:13:\"admin_notices\";a:1:{s:28:\"fuse-social-floating-sidebar\";a:0:{}}}','yes'),(739,'fs_gdpr','a:1:{s:2:\"u1\";a:1:{s:8:\"required\";b:0;}}','yes'),(740,'fs_api_cache','a:0:{}','no'),(743,'fuse','a:21:{s:8:\"last_tab\";s:0:\"\";s:12:\"opt-sortable\";a:18:{s:8:\"Facebook\";s:1:\"#\";s:7:\"Twitter\";s:1:\"#\";s:3:\"RSS\";s:0:\"\";s:8:\"Linkedin\";s:0:\"\";s:7:\"Youtube\";s:0:\"\";s:6:\"Flickr\";s:0:\"\";s:11:\"Stumbleupon\";s:0:\"\";s:9:\"Instagram\";s:0:\"\";s:6:\"Tumblr\";s:0:\"\";s:4:\"Vine\";s:0:\"\";s:2:\"VK\";s:0:\"\";s:10:\"SoundCloud\";s:0:\"\";s:9:\"Pinterest\";s:0:\"\";s:6:\"Reddit\";s:0:\"\";s:13:\"StackOverFlow\";s:0:\"\";s:7:\"Behance\";s:0:\"\";s:6:\"Github\";s:0:\"\";s:5:\"Email\";s:0:\"\";}s:17:\"fuse-custom-icons\";a:9:{s:19:\"redux_repeater_data\";a:1:{i:0;a:1:{s:5:\"title\";s:0:\"\";}}s:11:\"title_field\";a:1:{i:0;s:0:\"\";}s:8:\"icon_url\";a:1:{i:0;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:9:\"icon-size\";a:1:{i:0;s:2:\"75\";}s:15:\"social_icon_url\";a:1:{i:0;s:0:\"\";}s:8:\"bg_color\";a:1:{i:0;s:0:\"\";}s:12:\"icon_m_color\";a:1:{i:0;s:0:\"\";}s:16:\"icon__hv_m_color\";a:1:{i:0;s:0:\"\";}s:17:\"icon__hbg_m_color\";a:1:{i:0;s:0:\"\";}}s:18:\"custom_icon_on_top\";s:0:\"\";s:10:\"color_main\";a:6:{s:19:\"redux_repeater_data\";a:1:{i:0;a:1:{s:5:\"title\";s:1:\"2\";}}s:13:\"social_select\";a:1:{i:0;s:0:\"\";}s:8:\"bg_color\";a:1:{i:0;s:0:\"\";}s:12:\"icon_m_color\";a:1:{i:0;s:0:\"\";}s:14:\"hover_bg_color\";a:1:{i:0;s:0:\"\";}s:18:\"hover_icon_m_color\";a:1:{i:0;s:0:\"\";}}s:14:\"design-section\";s:1:\"2\";s:11:\"linksnewtab\";s:1:\"1\";s:18:\"animation_on_hover\";s:0:\"\";s:11:\"animate_sec\";s:3:\"0.5\";s:6:\"shadow\";s:1:\"1\";s:12:\"change_color\";s:0:\"\";s:8:\"position\";s:5:\"right\";s:4:\"size\";s:2:\"48\";s:15:\"hide_blog_posts\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:13:\"action_button\";s:0:\"\";s:11:\"select_icon\";s:0:\"\";s:23:\"button_background_color\";a:2:{s:4:\"from\";s:0:\"\";s:2:\"to\";s:0:\"\";}s:19:\"button_border_color\";s:0:\"\";s:26:\"active_social_border_color\";s:0:\"\";s:20:\"active_animate_hover\";s:0:\"\";}','yes'),(744,'fuse-transients','a:4:{s:14:\"changed_values\";a:1:{s:8:\"position\";s:4:\"left\";}s:9:\"last_save\";i:1645418537;s:13:\"last_compiler\";i:1645418537;s:11:\"last_import\";i:1645418537;}','yes'),(767,'cht_created_on','2022-02-28','yes'),(768,'cht_devices','','yes'),(769,'cht_position','right','yes'),(770,'cht_cta','Contact us','yes'),(771,'cht_numb_slug','Whatsapp,Skype,','yes'),(772,'cht_social_whatsapp','a:31:{s:5:\"value\";s:15:\"+62 823-823-143\";s:11:\"full_number\";s:12:\"+62823823143\";s:10:\"is_desktop\";s:7:\"checked\";s:9:\"is_mobile\";s:7:\"checked\";s:15:\"embedded_window\";s:2:\"no\";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'),(773,'cht_social_phone','','yes'),(774,'cht_widget_size','54','yes'),(775,'widget_icon','chat-base','yes'),(776,'cht_widget_img','','yes'),(777,'cht_color','#4F6ACA','yes'),(778,'chaty_intro_popup','show','yes'),(779,'Chaty_show_affiliate_box_after','2022-02-26','yes'),(780,'chaty_show_review_box_after','2022-02-28','yes'),(781,'chaty_update_message','2','yes'),(830,'widget_zoom-social-icons-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(835,'cht_social_Facebook_Messenger','','yes'),(836,'cht_social_SMS','','yes'),(837,'cht_social_Instagram','','yes'),(838,'cht_social_Telegram','','yes'),(839,'cht_social_Line','','yes'),(840,'cht_social_WeChat','','yes'),(841,'cht_social_Twitter','','yes'),(842,'cht_social_Google_Maps','','yes'),(843,'cht_social_Slack','','yes'),(844,'cht_social_Email','','yes'),(845,'cht_social_Skype','a:27:{s:5:\"value\";s:4:\"sonu\";s:10:\"is_desktop\";s:7:\"checked\";s:9:\"is_mobile\";s:7:\"checked\";s:8:\"bg_color\";s:7:\"#03A9F4\";s:5:\"title\";s:5:\"Skype\";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'),(846,'cht_social_Snapchat','','yes'),(847,'cht_social_Linkedin','','yes'),(848,'cht_social_Viber','','yes'),(849,'cht_social_Vkontakte','','yes'),(850,'cht_social_TikTok','','yes'),(851,'cht_social_Waze','','yes'),(852,'cht_social_Poptin','','yes'),(853,'cht_social_Link','','yes'),(854,'cht_social_Custom_Link','','yes'),(855,'cht_social_Custom_Link_3','','yes'),(856,'cht_social_Custom_Link_4','','yes'),(857,'cht_social_Custom_Link_5','','yes'),(858,'cht_social_Contact_Us','','yes'),(859,'cht_custom_color','','yes'),(860,'cht_widget_font','','yes'),(861,'positionSide','','yes'),(862,'cht_bottom_spacing','','yes'),(863,'cht_side_spacing','','yes'),(864,'cht_cta_switcher','','yes'),(865,'chaty_attention_effect','','yes'),(866,'chaty_default_state','click','yes'),(867,'chaty_trigger_on_time','yes','yes'),(868,'chaty_trigger_time','0','yes'),(869,'chaty_trigger_on_exit','no','yes'),(870,'chaty_trigger_on_scroll','no','yes'),(871,'chaty_trigger_on_page_scroll','0','yes'),(872,'cht_close_button','yes','yes'),(873,'cht_close_button_text','Hide','yes'),(874,'chaty_icons_view','vertical','yes'),(875,'cht_widget_title','','yes'),(876,'cht_active','1','yes'),(877,'cht_cta_action','click','yes'),(878,'cht_cta_text_color','#333333','yes'),(879,'cht_cta_bg_color','#ffffff','yes'),(880,'cht_pending_messages','off','yes'),(881,'cht_number_of_messages','1','yes'),(882,'cht_number_color','#ffffff','yes'),(883,'cht_number_bg_color','#dd0000','yes'),(884,'cht_license_key','','yes'),(885,'chaty_updated_on','1646020359','yes'),(1138,'wpsm_cns_default_settings','s:331:\"a:11:{s:8:\"icon_clr\";s:7:\"#000000\";s:13:\"count_num_clr\";s:7:\"#000000\";s:15:\"count_title_clr\";s:7:\"#000000\";s:9:\"icon_size\";s:2:\"20\";s:14:\"count_num_size\";s:2:\"18\";s:10:\"title_size\";s:2:\"18\";s:9:\"cn_weight\";s:3:\"400\";s:11:\"font_family\";s:9:\"Open Sans\";s:12:\"display_icon\";s:3:\"yes\";s:9:\"cn_layout\";s:1:\"4\";s:10:\"custom_css\";s:0:\"\";}\";','yes'),(1139,'wpsm_cns_review','a:2:{s:4:\"time\";i:1649765422;s:9:\"dismissed\";b:0;}','yes'),(1142,'widget_ec_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1335,'_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:1652962134;s:15:\"version_checked\";s:5:\"5.9.3\";s:12:\"translations\";a:0:{}}','no'),(1732,'widget_youtube-feeds-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1735,'sby_rating_notice','pending','no'),(1736,'sby_statuses','a:1:{s:13:\"first_install\";i:1650442902;}','no'),(1737,'sby_db_version','1.4','yes'),(1739,'sby_notifications','a:4:{s:6:\"update\";i:1652957425;s:4:\"feed\";a:0:{}s:6:\"events\";a:0:{}s:9:\"dismissed\";a:0:{}}','yes'),(1740,'sby_newuser_notifications','a:4:{s:6:\"update\";i:1650442905;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:\"sby-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:\"sby_notice_dismiss sby_main_cta\";s:4:\"text\";s:18:\"Sure, I\'d love to!\";}s:7:\"dismiss\";a:3:{s:3:\"url\";a:1:{s:28:\"sby_ignore_rating_notice_nag\";s:1:\"1\";}s:5:\"class\";s:18:\"sby_notice_dismiss\";s:4:\"text\";s:9:\"No thanks\";}s:8:\"complete\";a:3:{s:3:\"url\";a:1:{s:28:\"sby_ignore_rating_notice_nag\";s:1:\"1\";}s:5:\"class\";s:18:\"sby_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:\"sby_ignore_rating_notice_nag\";s:5:\"later\";}s:5:\"class\";s:18:\"sby_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:\"sby-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:\"sby_notice_dismiss sby_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:\"sby_ignore_new_user_sale_notice\";s:6:\"always\";}s:5:\"class\";s:18:\"sby_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'),(2240,'secret_key','H#_Di5mC^YrAxXqPEL@TKF gf`c8cRZ,fdM.O2JSTC?n~F8He41a}3P4Wlfs%1:H','no'),(2565,'_site_transient_timeout_browser_1af3d6d4fbb7947d107b0170a309f510','1653124011','no'),(2566,'_site_transient_browser_1af3d6d4fbb7947d107b0170a309f510','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"101.0.4951.64\";s:8:\"platform\";s:9:\"Macintosh\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(2567,'_site_transient_timeout_php_check_0260183cef5829810c63d4ec9ff87fd1','1653124012','no'),(2568,'_site_transient_php_check_0260183cef5829810c63d4ec9ff87fd1','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:0;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),(2633,'_site_transient_timeout_community-events-65c57f2ec09a16b9c65e86a660964d65','1652985147','no'),(2634,'_site_transient_community-events-65c57f2ec09a16b9c65e86a660964d65','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:12:\"49.207.195.0\";}s:6:\"events\";a:1:{i:0;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:46:\"WordPress Meetup - Topic & Venue to be decided\";s:3:\"url\";s:58:\"https://www.meetup.com/BengaluruWordPress/events/285385324\";s:6:\"meetup\";s:19:\"Bengaluru WordPress\";s:10:\"meetup_url\";s:42:\"https://www.meetup.com/BengaluruWordPress/\";s:4:\"date\";s:19:\"2022-05-21 15:00:00\";s:8:\"end_date\";s:19:\"2022-05-21 16:30:00\";s:20:\"start_unix_timestamp\";i:1653125400;s:18:\"end_unix_timestamp\";i:1653130800;s:8:\"location\";a:4:{s:8:\"location\";s:20:\"Bengaluru, KA, India\";s:7:\"country\";s:2:\"IN\";s:8:\"latitude\";d:12.9700000000000006394884621840901672840118408203125;s:9:\"longitude\";d:77.56000000000000227373675443232059478759765625;}}}}','no'),(2635,'_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3','1652985148','no'),(2636,'_transient_feed_9bbd59226dc36b9b26cd43f15694c5c3','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:112:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\n \n	\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:8:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"The latest news about WordPress and the WordPress community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 17 May 2022 16:42:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/?v=6.1-alpha-53413\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"image\";a:1:{i:0;a:6:{s:4:\"data\";s:11:\"\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:3:\"url\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://s.w.org/favicon.ico?2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"width\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:6:\"height\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}s:4:\"item\";a:30:{i:0;a:6:{s:4:\"data\";s:69:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"WordPress 6.0 Release Candidate 3 (RC3) Now Available for Testing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"https://wordpress.org/news/2022/05/wordpress-6-0-release-candidate-3-rc3-now-available-for-testing/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 17 May 2022 16:39:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=12866\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:166:\"WordPress 6.0 Release Candidate 3 is now available for testing! You can download and help test RC3 in three ways. 6.0 is planned for general release on May 24, 2022.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Dan Soschin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4240:\"\n<p>WordPress 6.0 is scheduled for release next week on May 24, 2022! This RC3 release is the final opportunity for you to test and help contribute to making the 6.0 release great.</p>\n\n\n\n<p>You can view changes since the RC2 release via <a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.0\">Gutenberg</a> and <a href=\"https://core.trac.wordpress.org/query?status=accepted&amp;status=closed&amp;changetime=05%2F10%2F2022..05%2F17%2F2022&amp;resolution=fixed&amp;milestone=6.0&amp;col=id&amp;col=summary&amp;col=status&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=priority&amp;order=id\">Trac</a>.</p>\n\n\n\n<h1>Installing RC3</h1>\n\n\n\n<p><strong>This version of the WordPress software is under development</strong>. Please do not install, run, and test this version of WordPress on production or mission-critical websites. Instead, it is recommended that you install RC3 on a test server and site.&nbsp;</p>\n\n\n\n<p>You can test WordPress 6.0 RC3 in three ways:</p>\n\n\n\n<p><strong>Option 1: </strong>Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the “Bleeding edge” channel and “Beta/RC Only” stream).</p>\n\n\n\n<p><strong>Option 2: </strong>Direct download the <a href=\"https://wordpress.org/wordpress-6.0-RC3.zip\">release candidate (zip)</a>.</p>\n\n\n\n<p><strong>Option 3:</strong> When using WP-CLI to upgrade from Beta 1, 2, 3, 4, RC1, or RC2 on a case-insensitive filesystem, please use the following command:</p>\n\n\n\n<p><code>wp core update --version=6.0-RC3</code></p>\n\n\n\n<h1>Plugin and Theme Developers</h1>\n\n\n\n<p>All plugin and theme developers are encouraged to complete testing of their respective extensions against WordPress 6.0 RC3 and update the “<em>Tested up to”</em> version in their readme file to 6.0 this week. If you find compatibility problems, please be sure to post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>, so these items can be investigated further prior to the final release date of May 24.</p>\n\n\n\n<p>Review the <a href=\"https://make.wordpress.org/core/2022/05/03/wordpress-6-0-field-guide/\"><em>WordPress 6.0 Field Guide</em></a>, for more details on this release.</p>\n\n\n\n<p>Review additional information on the full <a href=\"https://make.wordpress.org/core/6-0/\">6.0 release cycle</a>.</p>\n\n\n\n<p>Check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/dev-notes+6-0/\">6.0-related developer notes</a> in the coming weeks which will detail upcoming changes.</p>\n\n\n\n<h1>Translate WordPress</h1>\n\n\n\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help translate WordPress into more than 100 languages.</a></p>\n\n\n\n<h1>How to Help Test WordPress</h1>\n\n\n\n<p>Testing for issues is critical for stabilizing a release throughout its development. Testing is also a great way to contribute to WordPress. If you are new to testing, check out this <a href=\"https://make.wordpress.org/test/2022/04/12/help-wanted-test-wordpress-6-0/\">detailed guide</a> that will walk you through how to get started.</p>\n\n\n\n<p>If you think you have run into an issue, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. If you are comfortable writing a reproducible bug report, you can <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>. This is also where you can find a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2>RC3, An (Almost) Final Haiku</h2>\n\n\n\n<p>It’s near time for six<br>The reward is the journey<br>Just one week to go</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p>Thank you to the following contributors for collaborating on this post: <a href=\'https://profiles.wordpress.org/dansoschin/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>dansoschin</a>, <a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a>.&nbsp;</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"12866\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:61:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:127:\"WP Briefing: Episode 31: Open Source &amp; Accessibility– Celebrating Global Accessibility Awareness Day With Guest Joe Devon\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:140:\"https://wordpress.org/news/2022/05/episode-31-open-source-accessibility-celebrating-global-accessibility-awareness-day-with-guest-joe-devon/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 16 May 2022 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=12855\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:392:\"In the thirty-first episode of the WordPress Briefing, GAAD Co-Founder Joe Devon joins WordPress Executive Director Josepha Haden Chomphosy to discuss Global Accessibility Awareness Day and the role of open source in accessibility. Have a question you&#8217;d like answered? You can submit them to wpbriefing@wordpress.org, either written or as a voice recording. Credits Guest: Joe [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2022/05/WP-Briefing-031.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Chloe Bringmann\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:33186:\"\n<p>In the thirty-first episode of the WordPress Briefing, GAAD Co-Founder Joe Devon joins WordPress Executive Director Josepha Haden Chomphosy to discuss Global Accessibility Awareness Day and the role of open source in accessibility. </p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em><br></p>\n\n\n\n<h2 id=\"credits\">Credits</h2>\n\n\n\n<ul><li>Guest: Joe Devon</li><li>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a></li><li>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a></li><li>Production:&nbsp;<a href=\"https://profiles.wordpress.org/santanainniss/\">Santana Inniss</a> and <a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a></li><li>Song: Fearless First by Kevin MacLeod</li></ul>\n\n\n\n<h2>References</h2>\n\n\n\n<ul><li><a href=\"https://accessibility.day/about/\">About GAAD</a></li><li><a href=\"https://gaad.foundation/gaadpledge/\">GAAD Foundation Pledge</a></li><li><a href=\"https://www.who.int/health-topics/disability#tab=tab_1\">World Health Organization on Disability  </a></li><li><a href=\"https://en.wikipedia.org/wiki/The_dress\">The Dress Phenomenon</a></li><li>The Guardian on <a href=\"https://www.youtube.com/watch?v=7X_WvGAhMlQ\">Yanny or Laurel  </a></li><li><a href=\"https://josepha.blog/2019/05/24/empathy-vs-altruism-in-modern-leadership/\">Empathy vs. Altruism in Modern Leadership</a>, Josepha Haden Chomphosy </li><li><a href=\"https://webaim.org/projects/million/\">The WebAim Million 2022 Report</a></li><li><a href=\"https://make.wordpress.org/core/6-0/\">WordPress 6.0 Development Cycle </a></li><li><a href=\"https://europe.wordcamp.org/2022/\">WordCamp Europe 2022</a></li></ul>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-12855\"></span>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy </strong>00:00:00]&nbsp;</p>\n\n\n\n<p>Hello everyone. And welcome to the WordPress Briefing. The podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I&#8217;m your host Josepha Haden Chomphosy. Here we go!</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy </strong>00:00:40]&nbsp;</p>\n\n\n\n<p>Y&#8217;all, we&#8217;ve got an absolutely jam-packed couple of weeks in WordPress. We&#8217;ve got events happening and releases shipping and contributor days being coordinated (I almost said contributor days being contributed). That&#8217;s also what they&#8217;re doing. I&#8217;ll share some of those highlights in today&#8217;s small list of big things, but I did want to specifically call out something that&#8217;s coming up this week on Thursday (May 19, 2022), and that something is Global Accessibility Awareness Day.</p>\n\n\n\n<p>The team of contributors over on the Accessibility team has participated in the Global Accessibility Awareness Day in the past. So I thought it would be interesting to hear from one of the co-founders of this particular day of awareness.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy </strong>00:01:27]&nbsp;</p>\n\n\n\n<p>All right. And with that, Joe Devin, would you like to tell us a little bit more about yourself?&nbsp;</p>\n\n\n\n<p><strong>[Joe Devon 00:01:34] </strong></p>\n\n\n\n<p>Sure. So I am the co-founder of Global Accessibility Awareness Day, which is a day that goes viral every year on the third Thursday of May. We typically have the Twitter reach on the GAAD hashtag on Twitter of 200 million users, which is, I think, pretty much their active user count. We stopped counting once we hit their daily active user count. </p>\n\n\n\n<p>And then, I am Chair of the GAAD Foundation, which we launched last year. And then I have a day job too, where I&#8217;m CEO and co-founder of Diamond, which is an inclusive digital agency that builds software accessibly by default. </p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy </strong>00:02:15]&nbsp;</p>\n\n\n\n<p>Wonderful. Well, we are so excited to have you today. I said we like it&#8217;s me and the mouse in my pocket—we in the WordPress community that&#8217;s going to listen to this. Super excited to have you today. So you mentioned GAAD, Global Accessibility Awareness Day. Last year was your 10th anniversary, which is very exciting, but like with so many good things, I hear it all started with a blog post and a blog post on WordPress, no less.</p>\n\n\n\n<p>So I&#8217;d love to hear about how GAAD evolved from that, with, as I understand it, your co-founder of Jennison (Asuncion). That must be where you met him, I assume.</p>\n\n\n\n<p><strong>[Joe Devon 00:02:51] </strong></p>\n\n\n\n<p>Yes. Yes. So what happened was I started a WordPress blog called <em>My SQL Talk</em>. So it&#8217;s a database blog, and I just thought it was a brilliant name. I mean, My SQL Talk, like that, should be super popular.</p>\n\n\n\n<p>And it probably had maybe ten people who ever looked. Um, and then my dad was getting older, and my dad was a survivor of the concentration camps, and he was a genius. He spoke ten languages. It, he was one of those people. That, when he walked into a room, he just commanded respect. You knew that there was history. I don&#8217;t know how to explain it really, but it was special when my dad walked into the room. And considering all of this that he suffered in his life, watching him get older and struggle, particularly with his banking, was very painful to see. And the bank wasn&#8217;t accessible, so I wrote this blog post proposing that we create a Global Accessibility Awareness Day.</p>\n\n\n\n<p>Sometimes I get these visions, and they never turn into anything. But while I think about it, I&#8217;m like, &#8220;all right, let&#8217;s write this blog post and this can definitely work. Right?&#8221; And then you finish the blog post to hit send, and you&#8217;re like, &#8220;this is not going to work.&#8221;</p>\n\n\n\n<p>But I wasn&#8217;t even smart enough to do social media on it. But fortunately, WordPress had an auto-tweet feature, and it tweeted it out, and Jennison Asuncion, my co-founder, happened to be around and not out that Saturday night. And he read the blog post, and he said, &#8220;this is a great idea. Let&#8217;s make it happen.&#8221;</p>\n\n\n\n<p>And we had two busy people, but we both had a community. He had the accessibility community, and I was building a tech scene in Los Angeles. And what I discovered is if you combine a great idea with the community, great things can happen. </p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:04:49]</strong></p>\n\n\n\n<p>Oh man, you&#8217;re speaking my language over here, helping people find their communities, knowing that community is the thing that is the lifeblood of society.</p>\n\n\n\n<p>That sounded like a tautology. It is not a tautology. You can have a society with an attempt to not have any sort of community around it, but I bet it doesn&#8217;t work very well. Well, that&#8217;s, that&#8217;s very interesting. And so you all just kind of talked through what that would look like, I assume in confidence, or that would have to take place, right? Or was it on Twitter in those days?&nbsp;</p>\n\n\n\n<p><strong>[Joe Devon 00:05:24]</strong> </p>\n\n\n\n<p>Oh, you could still look in the comments and see the back and forth of Jennison and a bunch of other people that got pretty involved with GAAD that are some legendary folks in there. It&#8217;s kind of mind-blowing because I dunno how, how you feel, but for me, when I used to code, uh, three months later, I&#8217;d look back at old code and be like, &#8220;oh, I suck,&#8221; you know, or write an email even and you look back on it a day later and are like &#8220;what a stupid email, how stupid am I?&#8221; You know?  But I look back on that one after ten years; I was scared to look at it because I&#8217;m like, it must&#8217;ve been really bad. But you know, it kind of held up, and exactly what I wrote in there happened &#8211; to my utter shock.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:06:06]</strong></p>\n\n\n\n<p>But also, it&#8217;s kinda nice, though, to look back and be like, &#8220;oh, I used to be much dumber.&#8221;</p>\n\n\n\n<p>Cause then you&#8217;re like, look how far I&#8217;ve come. I&#8217;m no longer that dumb. I&#8217;m a different kind of dumb now; good for me. I always hope to be a different kind of dumb as I go forward. </p>\n\n\n\n<p>So then, okay, so that was your ten-year anniversary last year. GAAD, in general, now has been going on for 11 years, and at the time of this recording, in a couple of weeks, but then probably a week when it finally publishes, you have your next, your next round of that going.</p>\n\n\n\n<p>I think it seems safe to assume that awareness of the need for accessibility has increased during that time, but we all know that the work of accessibility is ongoing. And so, I&#8217;m just curious to hear from your perspective if the awareness of the need for accessibility has generally started to permeate developer communities.</p>\n\n\n\n<p>And are you seeing more developer awareness around the need for accessibility in tech in general?&nbsp;</p>\n\n\n\n<p><strong>[Joe Devon 00:07:12]</strong> </p>\n\n\n\n<p>Yeah. You know, it&#8217;s not enough. It&#8217;s certainly improved a lot.  I keynoted a conference probably four years after GAAD started, maybe five, and I kind of assumed nobody would have heard of accessibility, and I was taken aback when I asked who had heard of it, and a good chunk of the room had. So even then, there had been a difference, and I&#8217;d say now I see accessibility mentioned a lot more in conferences and stuff. But when it comes to actually building it, there&#8217;s a tremendous amount of ignorance. There, there still needs to be a lot more awareness.</p>\n\n\n\n<p>And I think partially people are a little bit scared to dip their toe because they&#8217;re scared that they&#8217;re going to be told that &#8220;no, it&#8217;s not accessible,&#8221; or that they&#8217;re going to say the wrong word or offend somebody. So I&#8217;d say that there&#8217;s some degree of trepidation, but also developers, and it&#8217;s not just developers, designers, and product people. There&#8217;s so much to learn, and it&#8217;s like, &#8220;oh God, there&#8217;s another piece that I have to learn.&#8221; </p>\n\n\n\n<p>And I&#8217;m so glad that you invited me on this podcast because it&#8217;s the developers that, you know, I am a developer, not anymore, I haven&#8217;t touched code in years, but that&#8217;s where I came from. Right? This is my peach, right? Particularly WordPress folks, because I had done a fair bit of WordPress before I moved on to some other things. And, I think we have to talk about usability and understand that accessibility is so much more than how we look at disability.</p>\n\n\n\n<p>And if you don&#8217;t mind, I&#8217;m going to ask you a question. How do you think the typical WordPress developer or designer would define disability? </p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:09:05] </strong></p>\n\n\n\n<p>in the kinds of conversations that I&#8217;ve had over the years, it frequently has to do with visual things. Because it&#8217;s just screens all day, right? And that&#8217;s a primary area where our designers and developers really have made some effort.</p>\n\n\n\n<p>But my personal favorite sort of, of example, for like, when you&#8217;re looking at how to make sure that your products are accessible is, what, if you have to use your website, or you have to build your website using only one arm. Because that gives you an opportunity to kind of look at disability from a permanent standpoint.</p>\n\n\n\n<p>Like if you have lost permanent use of one arm, but also gives you an opportunity to look at the temporary options for that sort of lack of mobility. Like you&#8217;re a mother with an infant, and so you have to be able to, you know, get your stuff done with one arm. And so I know that we paid a bunch of attention to screen readers and what works in not way back in 2018 and 2019 did a lot of work with. Literally zero screen. And can you still do the thing that you need to do, which was incredibly difficult. And I was really excited to see what our developers came up with around that. But I think that that is quite a bit of that discussion as we&#8217;re going through it from the beginning to the&nbsp;end.</p>\n\n\n\n<p><strong>[Joe Devon 00:10:27] </strong></p>\n\n\n\n<p>Yeah. I mean, that&#8217;s a great answer, and you definitely understand some of the nuances way better than I think that the average creator, digital product creator, I&#8217;m including the, you know, the product people, the designers, and the developers.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:10:42] </strong></p>\n\n\n\n<p>We&#8217;re very fortunate to have more than just developers in WordPress.</p>\n\n\n\n<p><strong>[Joe Devon 00:10:50]  </strong></p>\n\n\n\n<p>The reason I bring this up is that the WHO (World Health Organization) had to; they&#8217;re the ones that did massive research across the globe. And they had to, they had to come up with a definition, and in their definition, they needed to draw a line. Typically, I don&#8217;t remember the exact thing cause it&#8217;s a 350-page report, and I kept looking for where they defined it again.</p>\n\n\n\n<p>It was a little hard to find, but essentially it&#8217;s if there&#8217;s a major disability or a disability that impacts some significant portion of your day-to-day activities. And that&#8217;s really great when you&#8217;re trying to do a report on how many disabilities there are out there; what percentage of the population has a disability?</p>\n\n\n\n<p>And their figures are something like 15% of the population has a disability, which is a huge number. But at the same time, they also mentioned that 2.2 billion people have a visual impairment. And we also know that over 33% of the population is over 50, and I&#8217;m included in that population. And I can say that when you&#8217;re over 50, you know, I&#8217;ve got clouds in my eyes.</p>\n\n\n\n<p>I don&#8217;t know where they came from, but they definitely make it harder to see. When I&#8217;m in a restaurant, I can&#8217;t focus on the person across from me the same way. My hearing is not the same, and anybody over 50 is going to have certain impairments and won&#8217;t see as well; color contrast issues are a big deal.</p>\n\n\n\n<p>Being able to raise the font is a big deal. And I think that accessibility is connected in most people&#8217;s minds with disability. And they&#8217;ll attach that to something like being blind or being deaf or hard of hearing or having a missing limb or having some other kind of disability. </p>\n\n\n\n<p>And, as a result, they&#8217;re like, &#8220;well, I don&#8217;t even know any people in that category possibly,&#8221; and as a result, they&#8217;re like, &#8220;well, how important is this?&#8221; Yes. They might feel guilty. I should do the right thing. This is the right thing to do. But honestly, like how much money should I spend on it? How much, what percentage of my time should I spend on it?</p>\n\n\n\n<p>And it&#8217;s because they don&#8217;t realize that everybody has different abilities. And so, I&#8217;m starting to go away from even talking about disabilities and asking people to remember that all of us perceive things differently. </p>\n\n\n\n<p>Do you remember the gold dress where they were trying to say, what color is this dress? Is it gold and white or blue and black? And it is blue and black, but to me, all I see is gold and white. And then there was Laurel or Yanny. Do you remember that?. And some people heard it, and typically older people heard it as Laurel, and I&#8217;ve, and I do this in some of my presentations. I play that, that sound. And usually, it&#8217;s Laurel for me, but sometimes it&#8217;s Yanny. Even personally, it changes. </p>\n\n\n\n<p>And so, we have a totally different perception. Now think about memory. There&#8217;s a different kind of blindness. If you try and remember, let&#8217;s say a relative or a friend that is no longer. How well do you see that picture?</p>\n\n\n\n<p>Because for me, it is very, very vague, but for some people, they say, and I&#8217;ve been asking people, and I&#8217;d love your answer as well. How vivid is it? And some people say, I can read the, I can see the pattern on the shirt. It&#8217;s as vivid as if I see with opening my eyes, seeing, you know, the regular in front of me, and I can even read a name tag in the memory.</p>\n\n\n\n<p>And I&#8217;m like, Woah, so maybe I&#8217;m blind in a way. Right? So how do you see it? How do you remember things?&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:14:42] </strong></p>\n\n\n\n<p>Oh, I&#8217;m a, I&#8217;m a real visual person and a tactile person. And so, like if I interacted with someone, I&#8217;m very likely to be able to picture, like, recreate that mental picture pretty well in my mind. I recently, very recently, met some of my first people in that executive leadership space who were like, yeah, I don&#8217;t, I don&#8217;t visualize things.</p>\n\n\n\n<p>And I was like, what are you, how do you do this work? Because like, you have to be able to do that. And they were like, no, I don&#8217;t have mental pictures.&nbsp;</p>\n\n\n\n<p><strong>[Joe Devon 00:15:13] </strong></p>\n\n\n\n<p>Some people don&#8217;t have an inner dialogue.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:15:17] </strong></p>\n\n\n\n<p>I don&#8217;t understand that either,&nbsp;</p>\n\n\n\n<p><strong>[Joe Devon 00:15:19] </strong></p>\n\n\n\n<p>Me either. So accessibility studies all of these differences with respect to how you&#8217;re presenting all of this information.</p>\n\n\n\n<p>And if you don&#8217;t pay attention to accessibility, you&#8217;re really just missing out. And then there&#8217;s colorblindness. If you&#8217;re creating something like slack that has an online/offline indicator, and you only use red and green for people who are colorblind, they see gray and gray. And so what I&#8217;m trying to teach the community with digital product creators is that no, you cannot ignore it.</p>\n\n\n\n<p>You can ignore accessibility, but then you&#8217;re not good at your job. I mean, I don&#8217;t mean to say it in an offensive way, but you&#8217;re not good at your job if you&#8217;re unaware. If you break a rule on purpose, great. But if you don&#8217;t know the rule, it&#8217;s just a lack of craft, and you absolutely should make it a priority.</p>\n\n\n\n<p>And you&#8217;re not doing it as a charity. You&#8217;re doing it because you care about your users, and you care about your craft, and you want to build things well, and it&#8217;s a necessity. And I think that this is the kind of message that our community needs to hear.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:16:31]</strong></p>\n\n\n\n<p>I want to touch on something that you sort of brought up a bit, um, at the start of the answer there.</p>\n\n\n\n<p>So you brought up the concept of usability. And in the last time that I did a podcast about accessibility, I defined accessibility as a subset of usability. Do you think that if we were to consistently draw that line for people so that it&#8217;s not just like accessibility is this thing that you should do outside of usability?</p>\n\n\n\n<p>If we were to more consistently draw that line, do you think that that would help people to see and understand better that its shades of existence, usability, and accessibility?  &nbsp;</p>\n\n\n\n<p><strong>[Joe Devon 00:17:10] </strong></p>\n\n\n\n<p>Oh, 100%, a hundred percent. And in my company, we kind of realized that that&#8217;s exactly what we have to do. We have to see this as usability.</p>\n\n\n\n<p>And I don&#8217;t, we talk about accessibility a lot, but I don&#8217;t want to. It&#8217;s part of the plumbing for us. We&#8217;ve made it part of the plumbing, and I can tell you it&#8217;s a struggle to take accessibility and make it part of an organization, even when you&#8217;re bringing it top-down, believe it or not. For our teams, particularly the designers, they are blown away by what they&#8217;re learning because they&#8217;re improving their craft.</p>\n\n\n\n<p>And design is typically where there&#8217;s a struggle to get accessibility accepted because there seems to be a very strong idea of what a design should look like. And I think it&#8217;s really about the approach because UX and design it&#8217;s all about empathy for people. And when you approach it, not as, even though empathy should mean that, that, you know, do the right thing at the same time, it&#8217;s more about empathy for your user, and your user includes so much more than just people with disabilities that you haven&#8217;t run into somebody that has that disability and therefore you build it better, and it&#8217;s, it&#8217;s completely blown their mind. They love it. They love doing it. And I&#8217;m not hiring people with accessibility coming in. We&#8217;re training them to work accessibly. </p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:18:34] </strong></p>\n\n\n\n<p>So I think it&#8217;s interesting that you talk about empathy as part of being able to make sure that you&#8217;re creating something that&#8217;s accessible because I actually feel like empathy is. Like it&#8217;s being considered this gold standard for many, many things right now. And I think it actually is more harmful in the long run than instead making altruistic choices.</p>\n\n\n\n<p>And so, I have a blog post that I will link in our show notes that will kind of help everybody see more fully my concept there. But when you rely on empathy, you do kind of have to rely on one, being able to run into all of the issues you were mentioning. You have to know people who have problems in order to know that the problems exist.</p>\n\n\n\n<p>And then you also kind of have to assume that once you have willingly put yourself into the discomfort of that kind of disability, whatever, wherever it exists on that spectrum, your experience of that discomfort is the same as someone who lives with it. And I just don&#8217;t think that we can necessarily do that.</p>\n\n\n\n<p>I always think that trying to do the altruistic thing, like doing your research and figuring out what it is and trying to make decisions on behalf of other people as best you can, which is a terrible thing. Still, like decisions that take into account the experiences that people are sharing with you and then going to them and saying, &#8220;does this make that experience better or worse?&#8221; is the more sustainable option from my perspective, this is specifically leadership. Still, I think it&#8217;s true for accessibility as well, and probably product design as a whole, but it&#8217;s very difficult. Like people really feel like they understand the concept of empathy right now. And I do think that sometimes that leads us down the wrong path for things.</p>\n\n\n\n<p>What&#8217;s your thought on that? I think you kind of agree based on what your answer was&nbsp;</p>\n\n\n\n<p><strong>[Joe Devon 00:20:33]</strong> </p>\n\n\n\n<p>Oh, no, absolutely. And you know, we, you, can&#8217;t never about us without us, as the common saying, and we&#8217;ve gathered a group of a hundred people with a wide variety of disabilities for research. Whenever we do any UX and research, and sometimes we&#8217;re asked to just do research projects, we go out and ask the users.</p>\n\n\n\n<p>We had some really interesting companies approach us to do innovation and accessibility, and they had strong assumptions. We looked at the assumptions and agreed with it, but we&#8217;re like, all right, they were smart. They said, &#8220;vet this with users for us, please,&#8221; because they didn&#8217;t want to gather their own group.</p>\n\n\n\n<p>We vetted with users, and we&#8217;re blown away, always blown away because there are so many things you just don&#8217;t know unless you&#8217;ve lived with a particular disability. You can&#8217;t guess, and you&#8217;ve got to speak to your users and a wide variety of them. &nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:21:30]</strong></p>\n\n\n\n<p>Yes, absolutely. Absolutely. What role does open source play in expanding accessibility, either in specifically the digital space or just accessibility in general?</p>\n\n\n\n<p><strong>[Joe Devon 00:21:42] </strong></p>\n\n\n\n<p>I guess if the question is, what role does it play? I would say the role it plays is it is, unfortunately, it makes accessibility worse because, for the most part open source is not very accessible. And it&#8217;s a personal passion of mine, so I&#8217;m really glad that you brought that up. </p>\n\n\n\n<p>You know, it is so bizarre. You write a blog post and then it goes viral, and it goes viral every year to a degree that you can&#8217;t even believe it, that all these companies that you know are running events. Privately, publicly talking about it. And then you get all these people thanking you for what you&#8217;ve done year after year.</p>\n\n\n\n<p>And then one year, you read on Twitter, The Blind Onion; I&#8217;m sure you&#8217;re familiar with The Onion, the satirical clip, there&#8217;s the Blind Onion. And they tweet out, &#8220;Now that Global Accessibility Awareness Day is over, we look forward to 364 days of global accessibility oblivion.&#8221; And that really hurt at the time, but at the same time, and I was told to ignore it, don&#8217;t worry about it, but I&#8217;m like, no, this is coming from a place of pain.</p>\n\n\n\n<p>And the point of GAAD was to make a difference. It wasn&#8217;t too to just give everybody an opportunity to say, &#8220;Hey, look at what we&#8217;re doing,&#8221; and then not make a difference. So, as a result of that, I started to think about, well, where are we with this? And, and so I&#8217;ve created a state of accessibility report that through my company, we&#8217;re able to run for a few years, and it&#8217;s not, you know, the state is not great.</p>\n\n\n\n<p>And I&#8217;m like, well, what can we do to change things? So, as a result of all of this, I really wanted to figure out, well, what can we do to make sure that GAAD does make a difference? And so, I came up with the idea of the GAAD pledge, which is specifically meant for open source frameworks. </p>\n\n\n\n<p>And the idea of the GAAD pledge is that an open source framework, when they are ready, takes the pledge to make accessibility a core value of the framework. Now, terms of what that actually entails are different for every single project because every project is unique. We did create a bit of a framework, which had the idea of saying, okay, you&#8217;re going to, first of all, create an accessibility statement that says that this framework is going to conform to whatever, WCAG, which is Web Content Accessibility Guidelines, to whatever WCAG level is decided and is appropriate for the framework. That there&#8217;s going to be documentation for anybody that is downloading this piece of open source project and trying to implement it, that there should be guidelines for them, that all of the examples should be accessible. </p>\n\n\n\n<p>It&#8217;s really important because even the frameworks that try to pay attention to accessibility. You&#8217;ll often see that people from the community will provide examples, and they&#8217;re inaccessible. And it&#8217;s really sad when you see that because so many people are just copy-pasting. That&#8217;s typically how it works, and they&#8217;re going to copy-paste something bad. So putting a statement around it, I think, would be really great.</p>\n\n\n\n<p>And what we&#8217;re hoping to see is that lots and lots of big open source communities decide to take the pledge. And then it&#8217;ll sort of be table stakes that any new open source projects as well look, all of these frameworks that made it, they took the pledge and therefore we should take the pledge as well.</p>\n\n\n\n<p>And so the very first year, we had React Native take the pledge, and they put a lot of effort into their accessibility. The second group to take it was Ember.js, and they always put a lot of effort into their accessibility, and they continued that effort. We&#8217;re about to announce the next one, but we&#8217;re still two weeks away.</p>\n\n\n\n<p>So I can&#8217;t say anything yet, but yeah, we&#8217;re, uh, we&#8217;re hoping for a lot more uptake on, on the gap pledge because it, it affects so many people downstream. WordPress&#8217;s what percent of the web right now? 43%? So there you go. That&#8217;s so many people.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:25:57] </strong></p>\n\n\n\n<p>So many people. Yeah, fun fact Gutenberg, our current rewriting of the editing experience in WordPress, primarily uses React. And so, I&#8217;m glad to hear that they have taken that pledge as well. </p>\n\n\n\n<p>As with any good cooking, it starts with good&nbsp;ingredients.</p>\n\n\n\n<p><strong>[Joe Devon 00:26:12] </strong></p>\n\n\n\n<p>You said it. That was great. I wish I was a cook, though.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:26:23] </strong></p>\n\n\n\n<p>I love it. All right. Let&#8217;s what keeps you up at night when it comes to the state of accessibility?&nbsp;</p>\n\n\n\n<p><strong>[Joe Devon 00:26:29] </strong></p>\n\n\n\n<p>What keeps me up at night is how to move the needle. It is such a big thing to change. And there are so many angles that you can approach this with, but at the end of the day, it&#8217;s, it&#8217;s a monster.</p>\n\n\n\n<p>It&#8217;s a monster. There are so many legacy sites out there. If you look at WebAIM, they do a yearly report on the state of accessibility as well. They call it the WebAIM Million, and they&#8217;re typically seeing 97% inaccessible, 98%. It goes up and down a little bit every year. And that&#8217;s, that&#8217;s just a huge boat to move.</p>\n\n\n\n<p>I think we need to at least get the newer, uh, newer websites and mobile apps to move. And what we&#8217;ve seen in our state of accessibility report is that only the very top companies seem to put in the effort to make their products accessible. There is a big push with the enterprise companies to do it.</p>\n\n\n\n<p>The CEOs are starting to talk about it, but what we need is the entire culture of software development to change. Or I should even say digital product development change and to move that boat is massive. And that&#8217;s I put it in my tagline in my email like that&#8217;s my mission in life, and I hope to achieve it before I die.</p>\n\n\n\n<p>So that keeps me up at night.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:27:52] </strong></p>\n\n\n\n<p>I think that would keep me up at night as well. I mean, it seems like you are really just personally mission-driven and impact-driven. Do you feel like, in the event that the work that you&#8217;ve accomplished so far is what you accomplish, you feel still like you&#8217;ve had an impact?</p>\n\n\n\n<p>I feel like you have had&nbsp;an impact. </p>\n\n\n\n<p><strong>[Joe Devon 00:28:13] </strong></p>\n\n\n\n<p>I&#8217;m not one of those people that tries to have a legacy or like tries to focus on what my impact is and all of that. I just try and do good work. And hopefully, it just shows at the end of the day. I&#8217;m just trying to have the impact without the accolades.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:28:34]</strong></p>\n\n\n\n<p>I get it. Well, Joe, thank you so much for joining us here on this episode of WP Briefing. You have been a delight to chat with.</p>\n\n\n\n<p><strong>[Joe Devon 00:28:42]</strong></p>\n\n\n\n<p>Likewise, it&#8217;s really been a pleasure to meet you, and uh, and I appreciate the opportunity.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:28:54] </strong></p>\n\n\n\n<p>And now it&#8217;s time for our smallest of big things. As I mentioned at the start, it is packed. Number one tomorrow, May 17th, RC3. So one of the final RCs that we&#8217;re going to have for the WordPress 6.0 release, unless something goes horribly, horribly wrong, which I don&#8217;t think it will. </p>\n\n\n\n<p>And then, two days after that, Global Accessibility Awareness Day, as I mentioned, will be on May 19th. So, this coming Thursday. </p>\n\n\n\n<p>And then next week, we have the 6.0 release. We have the WordPress 6.0 release on May 24th. </p>\n\n\n\n<p> Three days after that, WordPress turns 19 on May 27th, starting its final teenage year before we turn twenty in 2023. So that was the rapid-fire dance card for the next two weeks.</p>\n\n\n\n<p>The stuff that is happening with and around WordPress for everyone to know. As a heads up, also, many people are headed to WordCamp Europe in Porto(, Portugal). The first week of June, I am going to do a live from WordCamp Europe episode. It will not be live. I&#8217;ll just record it live. And so. You know you&#8217;ll get to hear me with my hoarsest voice and maybe singing to my computer. Cause that almost always happens at these things. </p>\n\n\n\n<p>And that, my friends, is your small list of big things. Thank you for tuning in today for the WordPress Briefing. I&#8217;m your host, Josepha Haden Chomphosy. And I&#8217;ll see you again in a couple of weeks.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"12855\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:69:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"WordPress 6.0 Release Candidate 2 (RC2) Now Available for Testing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"https://wordpress.org/news/2022/05/wordpress-6-0-release-candidate-2-rc2-now-available-for-testing/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 10 May 2022 18:06:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=12840\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:171:\"WordPress 6.0 Release Candidate 2 is now available for testing! You can \ndownload and help test RC2 in three ways. You can also help translate WordPress to 100+ languages.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Dan Soschin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4830:\"\n<p>The next release candidate for WordPress 6.0 is now available!&nbsp;</p>\n\n\n\n<p>WordPress 6.0 is scheduled for release on May 24th, 2022 &#8211; just two weeks from today.</p>\n\n\n\n<p>“Release Candidate” means that this version of WordPress is ready for release! Since the WordPress ecosystem includes thousands of plugins and themes, it is important that everyone within the WordPress community check to see if anything was missed along the way. That means the project would love your help.</p>\n\n\n\n<p>Thank you to everyone who has contributed towards testing and logging issues to help make WordPress 6.0 stable (and awesome). WordPress still needs your help testing, especially theme and plugin developers.</p>\n\n\n\n<p>Since the RC1 release on May 3rd, 2022, there have been approximately 40 issues resolved in <a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.0\">Gutenberg</a> and <a href=\"https://core.trac.wordpress.org/query?status=accepted&amp;status=closed&amp;changetime=05%2F03%2F2022..05%2F10%2F2022&amp;resolution=fixed&amp;milestone=6.0&amp;col=id&amp;col=summary&amp;col=status&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=priority&amp;order=id\">Trac</a>.</p>\n\n\n\n<h1>Installing RC2</h1>\n\n\n\n<p><strong>This version of the WordPress software is under development</strong>. Please do not install, run, and test this version of WordPress on a production or mission-critical website. Instead, it is recommended that you RC2 on a test server and site.&nbsp;</p>\n\n\n\n<p>You can test WordPress 6.0 RC2 in three ways:</p>\n\n\n\n<ul><li><strong>Option 1: </strong>Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the “Bleeding edge” channel and “Beta/RC Only” stream).</li></ul>\n\n\n\n<ul><li><strong>Option 2: </strong>Direct download the <a href=\"https://wordpress.org/wordpress-6.0-RC2.zip\">release candidate version here (zip)</a>.</li></ul>\n\n\n\n<ul><li><strong>Option 3:</strong> When using WP-CLI to upgrade from Beta 1, 2, 3, 4, or RC1 on a case-insensitive filesystem, please use the following command:<br><code>wp core update --version=6.0-RC2</code></li></ul>\n\n\n\n<p>Additional information on the full <a href=\"https://make.wordpress.org/core/6-0/\">6.0 release cycle is available here</a>.</p>\n\n\n\n<p>Check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/dev-notes+6-0/\">6.0-related developer notes</a> in the coming weeks, which will detail all upcoming changes.</p>\n\n\n\n<h1>Plugin and Theme Developers</h1>\n\n\n\n<p>All plugin and theme developers should test their respective extensions against WordPress 6.0 RC2 and update the “<em>Tested up to”</em> version in their readme file to 6.0. If you find compatibility problems, please be sure to post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a> so that these items can be investigated further prior to the final release date of May 24th.</p>\n\n\n\n<p>Review the <a href=\"https://make.wordpress.org/core/2022/05/03/wordpress-6-0-field-guide/\"><em>WordPress 6.0 Field Guide</em></a> for more details on this release.</p>\n\n\n\n<h1>Translate WordPress</h1>\n\n\n\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help translate WordPress into more than 100 languages</a>.</p>\n\n\n\n<h1>How to Help Test WordPress</h1>\n\n\n\n<p>Testing for issues is critical for stabilizing a release throughout its development. Testing is also a great way to contribute to WordPress. If you are new to testing, check out this <a href=\"https://make.wordpress.org/test/2022/04/12/help-wanted-test-wordpress-6-0/\">detailed guide</a> that will walk you through how to get started.</p>\n\n\n\n<p>If you think you have run into an issue, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. If you are comfortable writing a reproducible bug report, you can <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>. This is also where you can find a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2>An RC2 Haiku for You</h2>\n\n\n\n<p>Anticipation<br>Sprinting toward G/A now<br>Please — test, translate — thanks!</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p>Thank you to the following contributors for collaborating on this post: <a href=\'https://profiles.wordpress.org/dansoschin/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>dansoschin</a>, <a href=\'https://profiles.wordpress.org/priethor/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>priethor</a>.&nbsp;&nbsp;</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"12840\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"The Month in WordPress – April 2022\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2022/05/the-month-in-wordpress-april-2022/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 05 May 2022 15:01:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:22:\"the month in wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=12816\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:329:\"This past month saw a lot of preparation work for WordPress 6.0, due to release on 24 May 2022. This major release brings exciting improvements – read on to find out more about the latest happenings in the WordPress project. WordPress 6.0 Release Candidate 1 The first release candidate (RC1) for WordPress 6.0 is now [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"rmartinezduque\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:10556:\"\n<p>This past month saw a lot of preparation work for WordPress 6.0, due to release on 24 May 2022. This major release brings exciting improvements – read on to find out more about the latest happenings in the WordPress project.</p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity\" />\n\n\n\n<h2>WordPress 6.0 Release Candidate 1</h2>\n\n\n\n<p><strong>The first release candidate (RC1) for WordPress 6.0 is now available for download</strong>. Help improve the project by testing and translating this version to non-English languages. Check out the RC1 <a href=\"https://wordpress.org/news/2022/05/wordpress-6-0-release-candidate-1/\">release post</a> to learn what’s new and how to contribute. For a more in-depth look at the upcoming changes, you can refer to the <a href=\"https://make.wordpress.org/core/2022/05/03/wordpress-6-0-field-guide/\">WordPress 6.0 Field Guide</a>.</p>\n\n\n\n<p>WordPress 6.0 is packed with all kinds of improvements for everyone. It brings new blocks, <a href=\"https://make.wordpress.org/core/2022/04/20/wordpress-6-0-accessibility-improvements/\">accessibility enhancements</a>, refined design tools, the ability to switch theme styles easily, multi-block partial text selection, and a new block locking interface, to name a few of its highlights.</p>\n\n\n\n<div class=\"wp-container-1 wp-block-buttons\">\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link\" href=\"https://wordpress.org/news/2022/05/episode-30-a-sneak-peek-at-wordpress-6-0/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong><strong>Listen to the latest </strong><strong>WP Briefing episode</strong><strong> for a sneak peek into the exciting features included in WordPress 6.0.</strong></strong></a></div>\n</div>\n\n\n\n<h2>Gutenberg releases: Versions 13.0 and 13.1 are here</h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2022/04/14/whats-new-in-gutenberg-13-0-14-april/\">Gutenberg 13.0</a> shipped on April 14, 2022, and introduced the final updates that will be part of WordPress 6.0. These include an improved editor experience (with the ability to select text across blocks), better responsive blocks, and prominently exposed block patterns.</li><li><a href=\"https://make.wordpress.org/core/2022/04/28/whats-new-in-gutenberg-13-1-27-april/\">Gutenberg 13.1</a> landed on April 27, 2022. This version adds border support to the Columns block and accessibility and Comment block improvements.</li></ul>\n\n\n\n<div class=\"wp-container-2 wp-block-buttons\">\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link\" href=\"https://make.wordpress.org/core/tag/gutenberg-new/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong><strong>Follow the </strong><strong>#gutenberg-new</strong><strong> posts for more details on the latest updates.</strong></strong></a></div>\n</div>\n\n\n\n<h2>Team updates: Updated guidelines for in-person events, redesign of the Gutenberg page, and more</h2>\n\n\n\n<ul><li>The Community team announced <a href=\"https://make.wordpress.org/community/2022/04/21/announcement-updated-covid-19-guidelines-for-official-wordpress-events/\">updated Covid-19 guidelines</a> for official WordPress events.</li><li>The <a href=\"https://make.wordpress.org/meta/2022/04/12/gutenberg-landing-page-kick-off/\">redesign of the Gutenberg landing page</a> on WordPress.org is nearing completion.</li><li>#WPDiversity announced new meeting times for Asia-Pacific (APAC) areas. You can express your interest <a href=\"https://make.wordpress.org/community/2022/04/22/wpdiversity-is-expanding-to-apac/\">in this post</a>.</li><li>The Training team plans to <a href=\"https://make.wordpress.org/training/2022/04/19/migrating-contributor-training-to-learn-wordpress/\">migrate the Contributor Training materials</a> to Learn WordPress. This move will help consolidate all the community-based training content in one place.</li><li>All learners on Learn WordPress can now enjoy using <a href=\"https://make.wordpress.org/training/2022/04/07/demo-sites-for-learn-wordpress-users/\">a live WordPress demo site</a> as they go through courses on the site.</li><li>The first stable <a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/core/2022/04/18/version-1-0-0-of-the-performance-lab-plugin-published/\" target=\"_blank\">version 1.0.0</a> of the <a href=\"https://wordpress.org/plugins/performance-lab/\">Performance Lab</a> plugin was released.</li><li>Read the latest edition of the <a href=\"https://make.wordpress.org/community/2022/04/21/meetup-organizer-newsletter-april-2022/\">Meetup Organizer Newsletter</a>.</li><li>Everyone is welcome and encouraged to join the new <a href=\"https://make.wordpress.org/photos/\">Photo Directory team</a> meetings. They are held on the first Friday of every month at 14:00 UTC in the <a rel=\"noreferrer noopener\" href=\"https://wordpress.slack.com/messages/photos\" target=\"_blank\">#photos</a> channel of the Make WordPress Slack.</li><li>The Performance team published a <a href=\"https://make.wordpress.org/core/2022/04/12/follow-up-on-webp-by-default-proposal/\">follow-up post</a> with the next steps on the WebP proposal.</li><li>Check out the <a href=\"https://make.wordpress.org/design/2022/04/25/design-share-apr-11-22/\">projects</a> the Design team contributed to over the past couple of weeks.</li><li>Official Featured and Beta plugins now limit <a href=\"https://make.wordpress.org/plugins/2022/04/15/featured-beta-plugins-now-limit-changes/\">ownership and committer changes</a>.</li><li>The April 2022 edition of the <a href=\"https://make.wordpress.org/polyglots/2022/04/22/polyglots-monthly-newsletter-april-2022/\">Polyglots Monthly Newsletter</a> was published.</li><li>The latest edition of People of WordPress features <a href=\"https://wordpress.org/news/2022/04/people-of-wordpress-meher-bala/\">Meher Bala</a>, a frontend web developer and community builder from India.</li><li>The <a rel=\"noreferrer noopener\" href=\"https://wordpress.slack.com/archives/C0FRG66LR\" target=\"_blank\">#props</a> channel of the Make WordPress Slack is now connected to the WordPress.org profile activity! This way when you give props, it will be included on your WordPress.org profile and the profile of those you mention. This change is part of a <a href=\"https://make.wordpress.org/project/2022/03/16/proposal-to-remove-spam-dormant-five-for-the-future-pledges/\">larger project</a> that will help credit more non-code contributions.</li></ul>\n\n\n\n<div class=\"wp-container-3 wp-block-buttons\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link\" href=\"https://make.wordpress.org/community/2022/04/11/return-to-in-person-events-share-your-challenges/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>How do you feel about in-person WordPress gatherings? The Community team wants to hear about the challenges in returning to these events.</strong></a></div>\n</div>\n\n\n\n<h2>Open feedback/testing calls</h2>\n\n\n\n<ul><li>Following this <a href=\"https://make.wordpress.org/updates/2021/03/16/proposal-a-wordpress-project-contributor-handbook/\">proposal</a> for a WordPress Project Contributor Handbook, Executive Director Josepha Haden opened a <a href=\"https://make.wordpress.org/project/2022/04/29/discussion-contrib-handbook-part-2/\">round of discussions</a> to share feedback on the various handbook sections.</li><li>Version 19.8 of WordPress for <a href=\"https://make.wordpress.org/mobile/2022/05/02/call-for-testing-wordpress-for-android-19-8/\">Android</a> and <a href=\"https://make.wordpress.org/mobile/2022/05/02/call-for-testing-wordpress-for-ios-19-8/\">iOS</a> is available for testing.</li><li>Join the 14th testing call of the Full Site Editing (FSE) Outreach program – “<a href=\"https://make.wordpress.org/test/2022/04/28/fse-program-testing-call-14-rallying-recipe-reviewers/\">Rallying Recipe Reviewers</a>.” This call focuses on testing blocks that help recipe authors make their recipe blogs more interactive. Leave your feedback by May 18, 2022.</li></ul>\n\n\n\n<div class=\"wp-container-4 wp-block-buttons\">\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link\" href=\"https://make.wordpress.org/test/2022/04/12/help-wanted-test-wordpress-6-0/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong><strong>Are you interested in helping test out new WordPress 6.0 features but don’t know where to start? This </strong><strong>detailed guide</strong><strong> will walk you through how to get started.</strong></strong></a></div>\n</div>\n\n\n\n<h2>Get ready for WordCamp Europe in Porto</h2>\n\n\n\n<ul><li>We are four weeks away from <a href=\"https://central.wordcamp.org/news/2022/05/join-the-european-wordpress-community-in-porto-portugal/\">WordCamp Europe</a>. After being postponed twice due to the pandemic, the WordPress event is taking place in Porto, Portugal, on 2-4 June 2022. Check out the <a href=\"https://europe.wordcamp.org/2022/schedule/\">schedule</a> and get your <a href=\"https://europe.wordcamp.org/2022/tickets/\">tickets</a> if you haven’t yet!</li><li>WordCamp US <a href=\"https://us.wordcamp.org/2022/support-underrepresented-speakers-at-wordcamp-us/\">announced</a> a new program to support underrepresented speakers.</li><li><a href=\"https://irun.wordcamp.org/2022/\">WordCamp Irun</a> (Spain) is happening this month on May 21 and 22, 2022.</li></ul>\n\n\n\n<div class=\"wp-container-5 wp-block-buttons\">\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link\" href=\"https://us.wordcamp.org/2022/our-call-for-volunteers-is-now-open/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong><strong><strong>The </strong><strong>Call for Volunteers</strong><strong> for WordCamp US in San Diego, California, is now open. Newcomers to WordPress are always welcomed. Apply today!</strong></strong></strong></a></div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity\" />\n\n\n\n<p><strong><em><strong><em>Have a story that we could include in the next issue of The Month in WordPress? Let us know by filling out </em></strong><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><strong><em>this form</em></strong></a><strong><em>.</em></strong></em></strong></p>\n\n\n\n<p><em>The following folks contributed to this Month in WordPress: <a href=\'https://profiles.wordpress.org/rmartinezduque/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>rmartinezduque</a>, <a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a>, <a href=\'https://profiles.wordpress.org/dansoschin/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>dansoschin</a>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"12816\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:69:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 6.0 Release Candidate 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2022/05/wordpress-6-0-release-candidate-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 03 May 2022 17:18:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=12799\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:171:\"WordPress 6.0 Release Candidate 1 is now available for testing! You can \ndownload and help test RC1 in three ways. You can also help translate WordPress to 100+ languages.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Dan Soschin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:7242:\"\n<p>The first release candidate (RC1) for WordPress 6.0 is now available!</p>\n\n\n\n<p>This is an important milestone on the 6.0 release cycle journey. “Release Candidate” means that this version of WordPress is ready for release! Before the official release date, time is set aside for the community to perform final reviews and help test. Since the WordPress ecosystem includes thousands of plugins and themes, it is important that everyone within the WordPress community check to see if anything was missed along the way. That means the project would love your help.</p>\n\n\n\n<p>WordPress 6.0 is planned for official release on May 24th, 2022, three weeks from today.&nbsp;</p>\n\n\n\n<p><strong>This version of the WordPress software is under development</strong>. Please do not install, run, and test this version of WordPress on a production or mission-critical website. Instead, it is recommended that you RC1 on a test server and site.&nbsp;</p>\n\n\n\n<p>You can test WordPress 6.0 RC1 in three ways:</p>\n\n\n\n<p><strong>Option 1: </strong>Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the “Bleeding edge” channel and “Beta/RC Only” stream).</p>\n\n\n\n<p><strong>Option 2: </strong>Direct download the <a href=\"https://wordpress.org/wordpress-6.0-RC1.zip\">release candidate version here (zip)</a>.</p>\n\n\n\n<p><strong>Option 3:</strong> When using WP-CLI to upgrade from Beta 1, 2, 3, or 4, on a case-insensitive filesystem, please use the following command:<br><code>wp core update --version=6.0-RC1</code></p>\n\n\n\n<p>Additional information on the full <a href=\"https://make.wordpress.org/core/6-0/\">6.0 release cycle is available here</a>.</p>\n\n\n\n<p>Check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/dev-notes+6-0/\">6.0-related developer notes</a> in the coming weeks which will detail all upcoming changes.</p>\n\n\n\n<h1>What’s in WordPress 6.0 RC1?</h1>\n\n\n\n<p>Since Beta 4, various items have been addressed, including (but not limited to):&nbsp;</p>\n\n\n\n<ul><li>Backport updates of Comment blocks tests (<a href=\"https://core.trac.wordpress.org/ticket/55643\">#55643</a>)</li><li>Backport a bugfix of Comment Template block pagination (<a href=\"https://core.trac.wordpress.org/ticket/55658\">#55658</a>)</li><li>Editor: Backport bug fixes for WordPress 6.0 from Gutenberg (<a href=\"https://core.trac.wordpress.org/ticket/55567\">#55567</a>)</li></ul>\n\n\n\n<p>WordPress 6.0 is the second major release for 2022, following 5.9 which became generally available in January. This release includes nearly 1,000 fixes and enhancements spanning most areas of the WordPress platform. Some key highlights within the content creation and site-building feature sets include:</p>\n\n\n\n<ul><li><strong>Style Switching:</strong> <a href=\"https://make.wordpress.org/core/2022/03/03/core-editor-improvement-choose-your-style/\">switch up the look and feel of your site</a>, all in one block theme. No need to change themes!</li><li><strong>More template options:</strong> use blocks to edit five more templates (author, date, categories, tag, and taxonomy).</li><li><strong>Multi-select: </strong>Easily select text across multiple blocks. Edit to your liking.</li><li><strong>Retain Styles: </strong>Keep your custom styles in place, whether transforming between blocks or creating new buttons.&nbsp;</li><li><strong>More patterns in more places:</strong> the Quick Inserter surfaces patterns that might work well for the condition you’re in, baking in relevant patterns for template parts and pages you’re working on.&nbsp;</li><li><strong>List View improvements: </strong>New keyboard shortcuts (shift + click) let you select multiple blocks to modify in bulk (reposition, delete, etc.), see your content at a glance with a collapsed by default view, and more.</li><li><strong>Refined design tools: </strong>Explore<strong> </strong>a new color panel, transparency options, more group block variations to create new layout options (Stack, Row), the ability to set your featured image in a Cover block, control the exact size of your featured image, gap support for the Gallery block, and more.</li><li><strong>New blocks: </strong>Various Post Comments, Read More, No Results in Query Loop, Post Author Biography, Avatar blocks.&nbsp;</li><li><strong>Block Locking: </strong>Choose to disable the option to remove a block, move it, or both, right in the editor.&nbsp;</li><li><strong>Export block themes: </strong>Explore the improved block theme export tool, as WordPress heads closer to codeless visual block theme building.</li></ul>\n\n\n\n<h1>Plugin and Theme Developers</h1>\n\n\n\n<p>All plugin and theme developers should test their respective extensions against WordPress 6.0 RC1 and update the “<em>Tested up to”</em> version in their readme file to 6.0. If you find compatibility problems, please be sure to post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>, so these items can be investigated further prior to the final release date of May 24th.</p>\n\n\n\n<p>Review the <em><a href=\"https://make.wordpress.org/core/2022/05/03/wordpress-6-0-field-guide/\">WordPress 6.0 Field Guide</a></em>, for more details on what’s contained in this release.</p>\n\n\n\n<h1>Translate WordPress</h1>\n\n\n\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help translate WordPress into more than 100 languages.</a> This release also marks the <a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#hard-freeze\">hard string freeze</a> point of the 6.0 release cycle.</p>\n\n\n\n<h1>How to Help Test WordPress</h1>\n\n\n\n<p>Testing for issues is critical for stabilizing a release throughout its development. Testing is also a great way to contribute to WordPress. If you are new to testing, check out this <a href=\"https://make.wordpress.org/test/2022/04/12/help-wanted-test-wordpress-6-0/\">detailed guide</a> that will walk you through how to get started.</p>\n\n\n\n<p>If you think you have run into an issue, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. If you are comfortable writing a reproducible bug report, you can <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>. This is also where you can find a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2>Haiku Fun for RC 1</h2>\n\n\n\n<p>Release candidate&nbsp;<br>Our journey nearly done<br>Get ready, WordPress</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p>Thank you to the following contributors for collaborating on this post: <a href=\'https://profiles.wordpress.org/dansoschin/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>dansoschin</a>, <a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a>, and <a href=\'https://profiles.wordpress.org/annezazu/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>annezazu</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"12799\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:69:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 6.0 Beta 4\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2022/05/wordpress-6-0-beta-4/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 02 May 2022 16:46:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=12787\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"WordPress 6.0 Beta 4 is now available for testing! You can download and help test Beta 4 in three ways.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Dan Soschin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:5813:\"\n<p>WordPress 6.0 Beta 4 is now available for testing!</p>\n\n\n\n<p>Beta 4 was not part of the originally published development cycle. It is aimed at providing an opportunity for testing some specific issues that were resolved since Beta 3. WordPress will continue with the regularly scheduled release milestones on May 3rd, 2022, with the RC1 release.</p>\n\n\n\n<p><strong>This version of the WordPress software is under development</strong>. Please do not install, run, and test this version of WordPress on a production or mission-critical website. Instead, it is recommended that you test Beta 4 on a test server and site.&nbsp;</p>\n\n\n\n<p>You can test WordPress 6.0 Beta 4 in three ways:</p>\n\n\n\n<p><strong>Option 1: </strong>Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the “Bleeding edge” channel and “Beta/RC Only” stream).</p>\n\n\n\n<p><strong>Option 2: </strong>Direct download the <a href=\"https://wordpress.org/wordpress-6.0-beta4.zip\" data-type=\"URL\" data-id=\"https://wordpress.org/wordpress-6.0-beta4.zip\">beta version here (zip)</a>.</p>\n\n\n\n<p><strong>Option 3:</strong> Use WP-CLI to test: wp core update &#8211;version=6.0-beta4.<br><em>Do not use this option if your filesystem is case-insensitive.</em></p>\n\n\n\n<p>The current target for the final 6.0 release is May 24, 2022, which is in less than a month!&nbsp;</p>\n\n\n\n<p>Additional information on the full <a href=\"https://make.wordpress.org/core/6-0/\">6.0 release cycle is available</a>.</p>\n\n\n\n<p>Check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/dev-notes+6-0/\">6.0-related developer notes</a> in the coming weeks which will detail all upcoming changes.</p>\n\n\n\n<h2>Explore What’s in Beta 4</h2>\n\n\n\n<p>Since Beta 3, various items have been addressed, including (but not limited to): </p>\n\n\n\n<ul><li>Update post content placeholder (<a href=\"https://github.com/WordPress/gutenberg/pull/40177\">#40177</a>)</li><li>Comments block: Fix glitches found while backporting (<a href=\"https://github.com/WordPress/gutenberg/pull/40628\">#40628</a>)</li><li>Show add pattern label when patterns are being prioritised (<a href=\"https://github.com/WordPress/gutenberg/pull/40598\">#40598</a>)</li><li>Fix regression with featured images in latest posts (<a href=\"https://github.com/WordPress/gutenberg/pull/40662\">#40662</a>)</li><li>Navigation Link: Avoid unnecessary re-renders (<a href=\"https://github.com/WordPress/gutenberg/pull/40696\">#40696</a>)</li><li>Navigation: Improve selector performance (<a href=\"https://github.com/WordPress/gutenberg/pull/40700\">#40700</a>)</li><li>Comments Title: Count toggle working in &#8216;Singular&#8217; editing mode (<a href=\"https://github.com/WordPress/gutenberg/pull/40728\">#40728</a>)</li><li>[Writing Flow]: Try to fix multi-selection with shift+click (<a href=\"https://github.com/WordPress/gutenberg/pull/40687\">#40687</a>)</li><li>Fix alignment issue with comment author name (<a href=\"https://github.com/WordPress/gutenberg/pull/40610\">#40610</a>)</li><li>Comment Content: Show moderation message (<a href=\"https://github.com/WordPress/gutenberg/pull/40612\">#40612</a>)</li><li>Display paragraph breaks in comment contents block (<a href=\"https://github.com/WordPress/gutenberg/pull/40667\">#40667</a>)</li><li>Fix style comment awaiting moderation indentation (<a href=\"https://github.com/WordPress/gutenberg/pull/40681\">#40681</a>)</li><li>Fix: Page patterns don&#8217;t show when only one pattern is available (<a href=\"https://github.com/WordPress/gutenberg/pull/40707\">#40707</a>)</li><li>Update the placeholder for post excerpt (<a href=\"https://github.com/WordPress/gutenberg/pull/40178\">#40178</a>)</li><li>REST API: Fix regression in the Pattern Directory endpoint. (<a href=\"https://core.trac.wordpress.org/ticket/55617\">#55617</a>)</li><li>REST API: Fix the scheme for the Block Directory search endpoint. (<a href=\"https://core.trac.wordpress.org/ticket/53621\">#53621</a>)</li><li>Show comments previews in the Comment Query Loop. (<a href=\"https://core.trac.wordpress.org/ticket/55634\">#55634</a>)</li><li>Avoid DB error in comment meta queries. (<a href=\"https://core.trac.wordpress.org/ticket/55218\">#55218</a>)</li></ul>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Testing for issues is critical for stabilizing a release throughout its development. Testing is also a great way to contribute to WordPress. If you are new to testing, check out this <a href=\"https://make.wordpress.org/test/2022/04/12/help-wanted-test-wordpress-6-0/\">detailed guide</a> that will walk you through how to get started.</p>\n\n\n\n<p>If you think you have run into an issue, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. If you are comfortable writing a reproducible bug report, you can <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>. This is also where you can find a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2>Another Haiku, Just for You</h2>\n\n\n\n<p>Beta four, surprise!<br>Iterating all day long<br>Time to share and test</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p>Thank you to the following contributors for collaborating on this post: <br><a href=\'https://profiles.wordpress.org/dansoschin/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>dansoschin</a>, <a href=\'https://profiles.wordpress.org/annezazu/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>annezazu</a>, and <a href=\'https://profiles.wordpress.org/costdev/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>costdev</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"12787\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:61:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"WP Briefing: Episode 30: A Sneak Peek at WordPress 6.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://wordpress.org/news/2022/05/episode-30-a-sneak-peek-at-wordpress-6-0/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 02 May 2022 13:03:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=12742\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:132:\"Get a behind the scenes sneak peek at the WordPress 6.0 release on this episode of the WordPress Briefing featuring a special guest!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2022/04/WP-Briefing-030.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Santana Inniss\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:33449:\"\n<p>In the thirtieth episode of the WordPress Briefing, Executive Director Josepha Haden Chomphosy and special guest Channing Ritter give listeners a sneak peek into the WordPress 6.0 release ahead of the Release Candidate 1 (RC1). </p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 id=\"credits\">Credits</h2>\n\n\n\n<ul><li>Special Guest: <a href=\"https://profiles.wordpress.org/critterverse/\" data-type=\"URL\" data-id=\"https://profiles.wordpress.org/critterverse/\">Channing Ritter</a></li><li>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a></li><li>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a></li><li>Production:&nbsp;<a href=\"https://profiles.wordpress.org/santanainniss/\">Santana Inniss</a> </li><li>Song: Fearless First by Kevin MacLeod</li></ul>\n\n\n\n<h2>References</h2>\n\n\n\n<ul><li><a href=\"https://wordpress.org/themes/twentytwentytwo/\">Twenty Twenty-Two Theme</a></li><li><a href=\"https://make.wordpress.org/core/2022/01/08/locking-blocks-in-wordpress-5-9/\">Block Locking</a></li><li><a href=\"https://wordpress.tv/2017/12/10/josepha-haden-beginners-guide-to-contributions/\">Beginner&#8217;s Guide to Contributing</a>, Josepha Haden Chomphosy</li><li><a rel=\"noreferrer noopener\" href=\"https://wordsesh.com/\" data-type=\"URL\" data-id=\"https://wordsesh.com/\" target=\"_blank\">WordSesh</a></li><li><a rel=\"noreferrer noopener\" href=\"https://learn.wordpress.org/social-learning/\" data-type=\"URL\" data-id=\"https://learn.wordpress.org/social-learning/\" target=\"_blank\">Social Learning Spaces</a></li><li><a rel=\"noreferrer noopener\" href=\"https://europe.wordcamp.org/2022/contributor-day/\" data-type=\"URL\" data-id=\"https://europe.wordcamp.org/2022/contributor-day/\" target=\"_blank\">WordCamp Europe Contributor Day</a></li></ul>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-12742\"></span>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy </strong>00:00:00]&nbsp;</p>\n\n\n\n<p>Hello everyone, and welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy. Here we go!</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy </strong>00:00:40]</p>\n\n\n\n<p>Tomorrow&#8217;s a big day. It marks the beginning of what is called the RC period, or release candidate period, for the current major release of the WordPress CMS. If you&#8217;re not super familiar with the way release cycles work, this is the point in the process where the code should pretty much be done changing.&nbsp;</p>\n\n\n\n<p>That way you can call in your designers, developers, and anyone else who builds things for others using your software. And they can either start testing their products on it, or they can figure out what new things they need to be able to teach their clients, whichever is most relevant to them. That is generally true for WordPress as well, but in true open source fashion, there is a caveat built in that helps us to get in last-minute, vital changes from contributors.</p>\n\n\n\n<p>We have a two-person sign-off rule that&#8217;s been around for about as long as I can remember, but lets things be added late in the release cycle, as long as there are two sign-offs from qualified contributors. Most of the time, those qualified contributors are lead developers of the project, but not always. We have a good group of people who are around helping us make sure that this is doable and the best thing that we can offer to all of our users.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy </strong>00:01:50]</p>\n\n\n\n<p>And so, yeah, two-person sign-off, that is the little bit of release process trivia that you never knew you needed. And since we&#8217;re looking at a release trivia, kind of hidden bits of how software is made, I actually have a guest with me today, Channing Ritter. So Channing is a product and visual designer based in Brooklyn, New York.</p>\n\n\n\n<p>She&#8217;s a design director at Automattic and has been working on the WordPress project as a full-time sponsored contributor since January, 2021. She is joining us to share some behind the scenes intel on what&#8217;s going into the 6.0 release, her role in that process, and then we&#8217;ll just kind of see how the conversation goes from there.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy </strong>00:02:40]</p>\n\n\n\n<p>Well, and with that, I&#8217;d like to welcome Channing to the WordPress Briefing. Hi Channing!</p>\n\n\n\n<p>[<strong>Channing Ritter </strong>00:02:45]</p>\n\n\n\n<p>Hey Josepha. Thanks so much for having me.&nbsp;</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy</strong> 00:02:48] </p>\n\n\n\n<p>I&#8217;m excited to have you here. If I understand, you are working on the design side of things with the release. So why don&#8217;t you tell me a little bit about the role you&#8217;ve played?</p>\n\n\n\n<p>[<strong>Channing Ritter</strong> 00:02:59] </p>\n\n\n\n<p>I am. I am the design release lead for the 6.0 release. And if I understand correctly, this is a position that has been unfulfilled for the past few release cycles. So I&#8217;m kind of the first person to step in over the past few releases. And I think that&#8217;s really exciting, especially because design has started to play such a more important role in the WordPress project over the past few years.</p>\n\n\n\n<p>So it makes sense that design would have a seat at the table, and I&#8217;m really excited to be helping advocate for the design team and learning from other folks on the release squad. Who&#8217;ve been doing this for a while.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy</strong> 00:03:33] </p>\n\n\n\n<p>So. First big question about 6.0, what is the feature that you are most excited about?&nbsp;</p>\n\n\n\n<p>[<strong>Channing Ritter</strong> 00:03:39] </p>\n\n\n\n<p>I&#8217;m most excited about the style switcher within the global styles panel. Um, so if folks still don&#8217;t know what I&#8217;m talking about there, it&#8217;s the ability to change between different variations of the theme.json without actually switching the theme.&nbsp;</p>\n\n\n\n<p>So this is a way to get a drastically different look and feels across your site with just a single click. And I see it as a really fun place to experiment and kind of get inspired for the different ways your site could appear without ever having to change your theme.</p>\n\n\n\n<p>And in terms of the Twenty Twenty-Two variations, they&#8217;re just really gorgeous and all so diverse. Like you have the main default theme that has the deep green and kind of peachy colors and this really elegant type treatment with a really thin Serif typeface. But then the variations are so different from that. And I think my favorite one is the Swiss variation.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy</strong> 00:04:36]</p>\n\n\n\n<p>The Swiss variation?&nbsp;</p>\n\n\n\n<p>[<strong>Channing Ritter</strong> 00:04:38]</p>\n\n\n\n<p>Yeah, every graphic design nerd loves Swiss design.&nbsp;</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy</strong> 00:04:42] </p>\n\n\n\n<p>Oh, ok! Now I know!&nbsp;</p>\n\n\n\n<p>[<strong>Channing Ritter</strong> 00:04:38] </p>\n\n\n\n<p>Really awesome things found in there. It&#8217;s a really high contrast, bold variation. It&#8217;s kind of black and white with red accents. I just love how different it is from the default style and how easy it is to change up your site and just get a whole drastically different look and feel.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy</strong> 00:05:00] </p>\n\n\n\n<p>That&#8217;s excellent. So for folks who do not know what we&#8217;re referring to, when we talk about the Twenty Twenty-Two variation, that is the default theme, Twenty Twenty-Two. I&#8217;ll put a link to both the classic and block-based versions in our show notes, but you&#8217;ll want to use the block-based version to look at these style variations that Channing has mentioned here.&nbsp;</p>\n\n\n\n<p>[<strong>Channing Ritter</strong> 00:05:24] </p>\n\n\n\n<p>You know, we&#8217;re really excited that the first-ever default block theme was released with 5.9, which is when Twenty Twenty-Two first went out and was bundled with 5.9.</p>\n\n\n\n<p>But now, with 6.0, I think even more so it&#8217;s starting to showcase the real power of block themes and what can actually be done there. And style variations is a huge kind of first step into this new world of block themes and starting to really open up the possibilities and all the flexibility that you have there.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy</strong> 00:05:55] </p>\n\n\n\n<p>Yeah, absolutely. So when we&#8217;re talking about the Twenty Twenty-Two default theme, when we&#8217;re talking about switching these variations inside the theme itself, that seems to me to be a very user-focused kind of feature. And when we talk about users in WordPress, there&#8217;s a lot of room for interpretation. Like if we look at it kind of in a framework of three types of users of WordPress, you have, like end-users. So people who are site owners using it as a site to, like, enable their business.&nbsp;</p>\n\n\n\n<p>But you also have mid-end users—people who use it to build sites for others. And what I like to call back-end users, people who are using WordPress as a framework. And of course at the start of the Gutenberg project, way back in forever, a million years ago, one of the big calls to action that we had around even, like, trying to do this, was that we wanted to make WordPress easier for users. Just plain users.&nbsp;</p>\n\n\n\n<p>And, and to me, that means making WordPress easier for those mid-end users, people who are creating WordPress sites for other people. But also should give some power and autonomy back to those end-users, the people who are using sites to enable their business or are site owners.&nbsp;</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy</strong> 00:07:14] </p>\n\n\n\n<p>And so in that context, between 5.9 and 6.0, do you feel like we have features that are really giving that kind of power and agency back to our end-users? Do you feel like we have some features that are really focused on those mid-end users, as opposed to our backend users? For a long time, we focused heavily on enabling our backend users, and now Gutenberg kind of moves us into those other two areas.</p>\n\n\n\n<p>And so do you think that things like being able to switch between your style of variations, other things like that are moving us closer to that particular goal of Gutenberg?</p>\n\n\n\n<p>[<strong>Channing Ritter</strong> 00:07:51] </p>\n\n\n\n<p>That&#8217;s a great question. I think it&#8217;s both. I think some of the features being released in 6.0 are absolutely going to empower that end-user.</p>\n\n\n\n<p>Particularly in terms of improvements around design tools and some of the quality of life improvements. For example, partially selecting across multiple blocks and being able to partially select texts there. That&#8217;s the type of thing that really brings the writing experience in the editor to be on par with how you would expect a text editing experience to work.</p>\n\n\n\n<p>And there are tons of small quality of life improvements in this release that I think are really gonna help those end-users. But there are also improvements around what we might call the maintainers who are building sites for others. I think block locking in particular is something that is really going to start filling a gap between people who build the sites and then people who do the day-to-day maintenance within a site.</p>\n\n\n\n<p>For example, in 6.0, we&#8217;re introducing some interface UI around block locking, but also there&#8217;ll be control around the ability to lock user roles.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy</strong> 00:09:03]</p>\n\n\n\n<p>Which I think makes a lot of sense. I mean, we have all of these user roles in the CMS itself, and for a long time, we&#8217;ve just been like free for all on blocks, which was great and is great and should be available to people.</p>\n\n\n\n<p>But also if we are saying, like, it makes sense to have this gradient of users and their abilities for the CMS itself, and we are saying that we want to move control of the website and the content to be at the base layer in these blocks, then it also makes sense that we should be able to provide that same sort of granular level of access in the blocks.</p>\n\n\n\n<p>So I think that&#8217;s a great thing. If you all, if dear listeners, you do not know what we mean by “block locking,” I&#8217;m sure that I can find a link for us in our show notes below as well. If for anyone who&#8217;s been talking through Gutenberg things with me for a while, you know that this is one of the primary use cases that I think has been a long time coming.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy</strong> 00:10:05]</p>\n\n\n\n<p>It was one of the first examples that I offered to folks when we had that question of like, who is this being built for? In what way is this beneficial to that mid-end user, as opposed to just giving all of the power and autonomy to users in a way that maybe is not the best for their visitors?&nbsp;</p>\n\n\n\n<p>This is one of those use cases that made the most sense to me being able to say, okay, well, the opportunity to, as somebody who runs an agency and is building websites for people to be able to say, yeah, ‘You can do anything that is possible in this instance of WordPress and all the things that you are allowed to do will not break your instance. It won&#8217;t break your website’.&nbsp;</p>\n\n\n\n<p>And so it gives a lot of time back to agencies to focus on their client&#8217;s most important problems, as opposed to not knowing how to update the hours in their footer or something like that. And so I&#8217;m very excited about that particular feature.</p>\n\n\n\n<p>[<strong>Channing Ritter</strong> 00:11:01]</p>\n\n\n\n<p>It&#8217;s such a long-requested feature. I mean, we&#8217;ve been hearing requests around this particular feature for years and, you know, often when something gets requested over a span of years like that, it&#8217;s because there are some complexities to figure out how it works.</p>\n\n\n\n<p>And that&#8217;s definitely been the case with moving forward with block locking. And there are a lot of nuances there. But I think what you were saying, I totally agree with. There’s always a push and pull. And as we enable more and more flexibility for end-users, there needs to be a little bit of push from the other side to kind of give more granular controls, more locking options, and make sure that everything can still be easily maintained.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy</strong> 00:11:43]</p>\n\n\n\n<p>Yeah, we mentioned in that answer the concept of maintainers. If you are a contributor, it&#8217;s not <em>that</em> kind of ‘maintainer.’ So if you&#8217;re a WordPress contributor and we said maintainers there, um, just know that that&#8217;s not what we&#8217;re referring to. If you don&#8217;t know what I&#8217;m talking about when I say ‘contributor,’ there is a whole community of open source people and maintainers are people who specifically take care of a particular part of the WordPress software or the WordPress project, um, that makes all this possible.</p>\n\n\n\n<p>So there&#8217;s, ya know….&nbsp;</p>\n\n\n\n<p>[<strong>Channing Ritter</strong> 00:12:19] </p>\n\n\n\n<p>So true! The maintainer has another meaning in this context.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy</strong> 00:12:20]</p>\n\n\n\n<p>Yeah, we have a mix in our audience and I love it, but it also makes me frequently spend like 10% of my podcast being like, by the way, when I said this, I didn&#8217;t mean you, but I did mean <em>you</em>, which makes it harder. I know.&nbsp;</p>\n\n\n\n<p>So. You’ve been with the project for a little bit, but if I recall correctly, this is the first time that you were, like, leading part of a release.</p>\n\n\n\n<p>So what would you say was the most challenging part of that?</p>\n\n\n\n<p>[<strong>Channing Ritter</strong>  00:12:52] </p>\n\n\n\n<p>Another great question. This is my first time being this closely involved with the release. Although I was involved with the 5.9 release, but mostly in a release assets capacity. So I helped with the <em>About Page</em> and the welcome banner that goes on the dashboard.</p>\n\n\n\n<p>So I did get some insight in the last release cycle. Which was great preparation for being more involved as a release lead on this cycle. From the design perspective, one of the hardest things is always going to be figuring out what exactly goes into the release and what needs more time. In the sense, you know, that there might be some features that need to stay in the Gutenberg plugin for a while and get more testing before they get released to a much wider audience in a major WordPress release.</p>\n\n\n\n<p>So I think on the design side, we definitely have some goals that are big, long-term projects that are likely going to span across, you know, many releases, maybe even over many years. And I think the full site editor is a great example of that in a sense that it&#8217;s not something that you just were gone in one release and then it all gets released and then it&#8217;s all good to go.</p>\n\n\n\n<p>[<strong>Channing Ritter</strong>  00:14:06] </p>\n\n\n\n<p>It&#8217;s something that has to be staggered across many releases, and there&#8217;s a lot of thought that goes into it; does this make sense in this more limited capacity, and what else needs to go in in order for this feature to go in? And the most complex things about the WordPress project is how interconnected things are.</p>\n\n\n\n<p>So when you start making those decisions about what should go in, what should get pulled out, often there&#8217;s sort of a domino effect of like, well, that would affect this feature and then, well, maybe they shouldn&#8217;t go in, or maybe this does need to go in. And that is really one of the most challenging, but also one of the most fascinating aspects of the release process.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy</strong> 00:14:46] </p>\n\n\n\n<p>Yes. It is very, very true that there are kind of no small problems left in WordPress. *laughs* Yeah, when we, when we first started with this like bigger release squad, cause that has not been routine for the history of the project. When we first started with that, I know that expanding out the exposure to like how much one change affects 25 different things was really, it was really good for all of us to be reminded.</p>\n\n\n\n<p>And as I mentioned at the top of our episode today, tomorrow begins the RC period. It begins the release candidate period, which is when it&#8217;s supposed to be, as locked down as possible. But if you all have been following along with our release process in general, which if you&#8217;re listening to this, you probably have, you know that last week or a couple of weeks ago, we had this whole question about the Webfonts API, and we had that conversation in a public space as best we could,&nbsp;</p>\n\n\n\n<p>Like, there are always things that you can&#8217;t, like, fully disclose in public spaces, but we had a very open and transparent conversation about, like, who is most affected by putting it in, in the state that the API was in. And, who&#8217;s most affected if we take it out. And where can we make compromises on either side so that both sides are a little happy and a little unhappy?</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy</strong> 00:16:09] </p>\n\n\n\n<p>And, like, that is all so hard to do. Not only in general. We have a 20-year-old code base and a five-year-old code base. And it&#8217;s all a big, big undertaking to understand what is happening and where it happens. And so there&#8217;s this moment always when we are trying to decide, like, is this baked enough? Did we put it in too early? Should we pull it out? How, if we pull it out, did we ask people to do too much work before we decided to pull it out anyway?</p>\n\n\n\n<p>Like, you always have those kinds of questions about it. And honestly, I think that most of us weren&#8217;t around the last time, that WordPress was, was this experimental in public, like it&#8217;s always been open source. It&#8217;s always been experimental and iterating publicly, which is just the hardest way to work on anything. We like, we shipped our best guesses. Don&#8217;t be mad. It&#8217;ll be… we&#8217;re coming for it. We&#8217;re going to fix it. Like, that&#8217;s always hard, but the last time around, when it was this substantial a change was, like, 2008 or something, like, it was ages and ages ago.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy</strong>  00:17:14] </p>\n\n\n\n<p>And we were smaller than, we had a smaller number of contributors. We had a smaller group of people actually using the CMS. And so over time it has gotten more and more complicated. And, and I don&#8217;t think that we can ever understate the complexities of that. And so for you, you had a little bit of exposure to it in 5.9 and then showed up for like really doing it in 6.0.</p>\n\n\n\n<p>Has it been a surprising change? Like, were you surprised much more by how complicated it was when you were closer to it?&nbsp;</p>\n\n\n\n<p>[<strong>Channing Ritter</strong> 00:17:47] </p>\n\n\n\n<p>Yeah, definitely. It’s been a real learning process, especially coming to understand how much there really are no easy answers. I think a lot of us are in the release squad are real problem solver types of people and, and want it to, you know, be a really neat, tidy answer.&nbsp;</p>\n\n\n\n<p>And it&#8217;s not always the case. You know, sometimes parts of the feature might go in, or some contingency plan might get put into place and things didn&#8217;t go exactly as planned. But what you said of being an experiment and being on kind of the cutting edge of trying out new things, I think there is a lot of passion around that in the WordPress project.&nbsp;</p>\n\n\n\n<p>Right now, we&#8217;re in such a transitional period for the project, you know, moving from classic themes to block themes and really changing the ideas of how we approach designing sites. And because of that, I think there is a lot of momentum and energy around getting new features, as many new features as possible into each release. But there&#8217;s also, you know, a lot of testing and stuff that needs to happen.</p>\n\n\n\n<p>And to make sure that, like you said, these things aren&#8217;t going out too early.&nbsp;</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy</strong> 00:19:01] </p>\n\n\n\n<p>Well, and there&#8217;s always that difficulty, we&#8217;re going to just leap right into open source areas now. There&#8217;s always that difficulty around, like, there&#8217;s this concept that when, like, we always want to ship something that doesn&#8217;t break backward compatibility when possible, we don&#8217;t want to ship vulnerabilities. Like, that&#8217;s always true, but we are in an open source project, and open source projects are necessarily kind of tolerant of like, that&#8217;s not our best, but like it skates, right?&nbsp;</p>\n\n\n\n<p>This was, we aimed for Ferrari and got a skateboard because sometimes you got to start with a skateboard, right? *laughter* Like if it gets you from one place to another, that&#8217;s kind of where we&#8217;ve got to aim some days.&nbsp;</p>\n\n\n\n<p>[<strong>Channing Ritter</strong> 00:19:45] </p>\n\n\n\n<p>Totally.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy</strong>  00:19:46] </p>\n\n\n\n<p>And that&#8217;s always so, so difficult, especially cause, like, for the big change that 5.0 represented, and that 5.9 represented– 6.0 is not as big a shock as 5.9 was.&nbsp; But, like, as big a change as those represented, it still skates. And that&#8217;s, I think what makes the work especially hard, especially nuanced. And like, we haven&#8217;t gotten together as human beings in two years. And so sometimes people just kind of forget there&#8217;s a human being back there.</p>\n\n\n\n<p>We&#8217;re humans. Everyone be nice. Yeah. I don&#8217;t know that part of running a release definitely was surprising to me. My first release that I ran was 5.0 and…</p>\n\n\n\n<p>[<strong>Channing Ritter</strong> 00:20:31] </p>\n\n\n\n<p>Oh, wow!</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy</strong> 00:20:32]</p>\n\n\n\n<p> Yeah, it was, like, that was  2018. And then I became the executive director at the top of 2019. And I distinctly remember one core chat where I showed up and just was like the most transparent, vulnerable person we&#8217;ve ever experienced in life.</p>\n\n\n\n<p>That&#8217;s not true. We have very vulnerable people in the project and very transparent people, but I told everyone like, there are a million of you and one of me, and it&#8217;s kind of terrifying that you&#8217;re leaping on me in this—like you&#8217;re scaring me a lot right now. And that was quite a thing to say to like, all these… it&#8217;s terrifying! Right?</p>\n\n\n\n<p>[<strong>Channing Ritter</strong> 00:21:12] </p>\n\n\n\n<p>I love when you see that type of vulnerability in the project. I think it takes… it takes a degree of comfort and familiarity with the project to even be able to admit to that. And to me, that&#8217;s a real sign of growth in the project. Like when I first started contributing, I don&#8217;t think I ever would have just said, like, ‘How is the feature supposed to work? I have no idea.’ That&#8217;s something that I say all the time now.</p>\n\n\n\n<p>*Laughter*</p>\n\n\n\n<p>And you know, that is completely fine and more than okay. It&#8217;s a massive project. There are folks who have done deep thinking about a feature over the course of years. You know, and there are experts who can help shed light on various problems that maybe you just haven&#8217;t had a chance to dive into yet and really understand the nuances of yet.</p>\n\n\n\n<p>So that&#8217;s the amazing thing about open source is that you can lean on folks who do have expertise in that particular area. You&#8217;re not expected to be an expert-expert in every single domain. It&#8217;s okay to say, I don&#8217;t really have a good idea or a good concept of this feature. I don&#8217;t have a good feeling for it. What do other folks think?&nbsp;</p>\n\n\n\n<p>[<strong>Channing Ritter</strong> 00:22:24] </p>\n\n\n\n<p>And even people who have been in the project for a long time, decade plus, still say that all the time. You know, or you might just say, like, I have a really rough idea of how this works, are other people seeing this the same way? Or did other people have a different, you know, mental picture of how this might work?</p>\n\n\n\n<p>Even if, sometimes it feels like you&#8217;re over-communicating, it&#8217;s really helpful because often people do have really dramatically different ideas about how a feature might take shape.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy</strong> 00:22:49] </p>\n\n\n\n<p>And I hope that&#8217;s one of the things that we never lose in the project. Like we are an old, old project now and we support a bunch of the web with a tiny, tiny group of people compared to the amount of the web that we support.</p>\n\n\n\n<p>And I hope that we always have that opportunity as senior leaders, which I am, and all of our upcoming leaders to all of us, just at some point, be like, can we stop the train? I don&#8217;t understand. I don’t understand that. Um, and not necessarily feel that that has made us a worse contributor. Cause I think that it&#8217;s when we are transparent about our lack of understanding.</p>\n\n\n\n<p>That&#8217;s when we have the opportunity to make what we&#8217;re offering to the world more solid and always better.&nbsp;&nbsp;</p>\n\n\n\n<p>[<strong>Channing Ritter</strong> 00:23:35] </p>\n\n\n\n<p>I love it. I think it&#8217;s the, one of the most lovely things about the WordPress community. There&#8217;s really low judgment around those types of questions and people are really inclusive and more than happy to take a moment to explain something to you or shed some light on an issue you might not have thought that much about.&nbsp;</p>\n\n\n\n<p>I think that&#8217;s one of the best things you can always reach out for help. And folks are always willing to provide guidance or context or even historical information about, you know, whether it&#8217;s been tried in the past or previous explorations and that sort of thing.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy</strong> 00:24:10] </p>\n\n\n\n<p> All right. Well, that covers all of my questions for you. Do you have a final thought about the release that you would like to share with everyone you don&#8217;t have to, if you don&#8217;t want to, not everyone has like a final sign off.&nbsp;</p>\n\n\n\n<p>[<strong>Channing Ritter</strong> 00:24:25] </p>\n\n\n\n<p>Yeah. One of the things I&#8217;m most excited about for this 6.0 release is all of the improvements around design tools.</p>\n\n\n\n<p>And these are just small improvements around a ton of different things, like the color panel, border controls, gap support, typography options, flexible container blocks, etc. These are the types of tools that are a designer&#8217;s dream. You know, they really make the difference between being able to make a really crisp, finished looking final product and having something that&#8217;s a little rough around the edges.</p>\n\n\n\n<p>And as a designer, like those are the things that your eye goes straight towards. And all of these nuanced new tools, they really allow designers to have that fine detailed control to create really pixel perfect sites. And I think that&#8217;s something that, you know, myself and a lot of others on the design team are just so beyond excited about.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy</strong> 00:25:25]</p>\n\n\n\n<p>Excellent. Well, Channing, thank you so much for joining us today on the WordPress Briefing; it has been an absolute delight.&nbsp;</p>\n\n\n\n<p>[<strong>Channing Ritter</strong> 00:25:32] </p>\n\n\n\n<p>Thank you for having me.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy</strong> 00:25:41] </p>\n\n\n\n<p>And now it is time, woohoo, for the small list of big things. My favorite part of this podcast, that&#8217;s not true. I have a lot of things that I love about this podcast. I just, in particular love being able to share like three things that are coming up in the next couple of weeks that everybody should be aware of. And I really particularly like the list I have this week.&nbsp;</p>\n\n\n\n<p>First as of today, we are two weeks away from WordSesh. If you&#8217;re looking forward to your first in-person WordPress event, but feel like you could use a little foundation information, a little bit of a WordPress primer, then this event has a lot of excellent thought leaders in the project that you can learn from.</p>\n\n\n\n<p>If you&#8217;re looking for more practical or hands-on opportunities, uh, you can also check out social learning spaces. All of those are free for anyone. So I will include links to both of them in the show notes.&nbsp;</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy </strong>00:26:30]&nbsp;</p>\n\n\n\n<p>Second, as of today, we are four weeks away from WordCamp Europe. This is one of our flagship events. So it also includes a contributor day, which I encourage you to look into. If you have never heard of one before. I will be there to meet some of the contributors that have joined the project since the end of 2019. And hopefully, I will see you there as well. If you&#8217;ve never heard of a contributor day, then I&#8217;ll include a link to the beginner&#8217;s guide to contributions, a little talk that I gave in 2017 in the show notes that should help you get your bearings or at the very least know what questions to ask yourself to figure out if a contributor day is right for you.</p>\n\n\n\n<p>And then the third thing as of today, it has been one week since <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a> and the <a href=\"https://make.wordpress.org/meta/\">Meta</a> developers… Um, that sounds like a band… Ian Dunn and the Meta developers connected the props channel in the community Slack to WordPress.org profile activity. I&#8217;m really excited about this. It&#8217;s the first in a long list of changes that are part of a larger project to credit more non-code contributions, more contributions that are not specific to a major release or event.</p>\n\n\n\n<p>And also to set us up to be able to provide more quality checks and balances for our growing Five for the Future program. If you&#8217;ve not been over there lately, if you&#8217;re not super sure what I&#8217;m talking about, there&#8217;s a link to the discussion post that we had about it, but also you can wander right over into the Making WordPress Slack and check out the props channel to just kind of see a running list of contributors that people are really grateful for. Which, frankly, if you ever are having a bad day, that is a wonderful place to just kind of wander in and see all of the positive vibes that people are sending around to each other.</p>\n\n\n\n<p>Uh, yeah, so the props channel, is always good. Uh, and that my friends is your small list of big things. Thank you for tuning in today for the WordPress Briefing. </p>\n\n\n\n<p>I&#8217;m your host, Josepha Haden Chomphosy. And I&#8217;ll see you again in a couple of weeks.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"12742\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:75:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"People of WordPress: Meher Bala\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://wordpress.org/news/2022/04/people-of-wordpress-meher-bala/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 30 Apr 2022 09:20:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:7:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Features\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:10:\"Interviews\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:9:\"HeroPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:19:\"People of WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:15:\"WordCamp Mumbai\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:6;a:5:{s:4:\"data\";s:16:\"wptranslationday\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=12706\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:106:\"This month\'s People of WordPress feature shares the story of developer and e-commerce builder Meher Bala. \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"webcommsat AbhaNonStopNewsUK\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:16637:\"\n<p>In this series, we share some of the inspiring stories of how WordPress and its global network of contributors can change people’s lives for the better. This month we feature a Indian-based WordPress developer and long term contributor on how it helped her find a career and a local and global community to belong to.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img width=\"1024\" height=\"515\" src=\"https://i2.wp.com/wordpress.org/news/files/2022/04/meher-1.jpg?resize=1024%2C515&#038;ssl=1\" alt=\"Meher pictured against the backdrop of a window overlooking trees \" class=\"wp-image-12728\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2022/04/meher-1.jpg?resize=1024%2C515&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2022/04/meher-1.jpg?resize=300%2C151&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2022/04/meher-1.jpg?resize=768%2C386&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2022/04/meher-1.jpg?w=1247&amp;ssl=1 1247w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p><strong>WordPress is an inspiration to Meher Bala, a frontend web developer and community builder from India. From using the software as a basic website tool to helping entrepreneurs and good causes around the world fulfill their aspirations, she has overcome personal barriers and now aims to inspire others.</strong></p>\n\n\n\n<p>Meher found her vocation and learned new skills through WordPress. She also discovered a way to encourage other women to consider careers in IT.&nbsp;</p>\n\n\n\n<h2>Opening the doors to a career in technology</h2>\n\n\n\n<p>As a child, Meher was diagnosed with dyslexia (difficulty in reading the written word) and dyscalculia (difficulty in comprehending numbers and mathematical functions). With the support of her parents and a tutor, she was able to overcome this learning obstacle. She developed coping techniques and a determination to work to overcome challenges as they appeared later in life.</p>\n\n\n\n<p>In school, she got an opportunity to replace one subject with computer studies as an alternative. This proved to be an eye-opener to future career possibilities.&nbsp;</p>\n\n\n\n<p>She began to research not only what the internet had to offer but also how it worked, including the new and fascinating concepts of email and websites. Her father bought the family’s first desktop computer so she could do her research at home.</p>\n\n\n\n<p>Meher’s father wanted to turn her love for computers into something that would serve her well in the future. In 2005, he enrolled her in a short computer course from a global IT training provider. The course tutor was so impressed with her performance, she was advised to enroll in a four year software development course.</p>\n\n\n\n<p>That meant she had studied the software development course alongside her higher education college course. Looking back, she enjoyed the dual challenge of the degree course in commerce, and the experience prepared her well to keep learning software while working as a developer. Within three years, she had learned C#, C, C++, HTML, Java, and .NET. </p>\n\n\n\n<p>After graduation, she was in a dilemma to choose between commerce and IT. What to choose? She had a compulsory one-year technology internship to complete, and her choice of focus for that year would prove to be a defining moment.</p>\n\n\n\n<p>In 2009, on her birthday, Meher was offered an internship. On the first day of the internship, she was introduced to WordPress. Her initial assignment was to change the look and feel of the WordPress dashboard — in just six hours. But there was a problem &#8211; she had never worked with WordPress before!</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>&#8220;I stared at the whiteboard and thought that task given was impossible and difficult to meet the deadline. I wondered if my boss was joking and did not know then what you could do with WordPress as a developer and how it could slot into your toolbox. It opened my eyes.&#8221;&nbsp;</p><cite>Meher Bala</cite></blockquote>\n\n\n\n<p>Meher used her research skills to know more about using WordPress. She found a plugin that would help her achieve her task. She met the deadline and it ingrained an interest that she would never lose. </p>\n\n\n\n<h2>Re-discovering WordPress</h2>\n\n\n\n<p>Five years after her initial WordPress experience, Meher was assigned to lead an international project in WordPress.&nbsp;She was hesitant — she had lost touch with the CMS during that five years, but the project was a great opportunity to become a team leader and lead from the front.&nbsp;</p>\n\n\n\n<p>She decided to update her WordPress skills, relying again on the strength of her research skills and determination. In the process, she also taught her team all about WordPress, inspiring many of those members to continue to develop their WordPress skill set.</p>\n\n\n\n<p>The success of that project was a pivotal moment for Meher and a new dawn as a developer specializing in WordPress.</p>\n\n\n\n<p>As a team lead, Meher soon found it was not possible to always have all the answers straight away. She found internet searches gave practical solutions—but rarely explained the theory behind it.</p>\n\n\n\n<p>So she went looking for a WordPress group to help her expand the scope and depth of her knowledge.</p>\n\n\n\n<h2>Finding the community and its developer learning opportunities </h2>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" width=\"999\" height=\"667\" src=\"https://i2.wp.com/wordpress.org/news/files/2022/04/dsc_00345.jpg?resize=999%2C667&#038;ssl=1\" alt=\"Meher at WordCamp Nagpur in 2017\" class=\"wp-image-12762\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2022/04/dsc_00345.jpg?w=999&amp;ssl=1 999w, https://i2.wp.com/wordpress.org/news/files/2022/04/dsc_00345.jpg?resize=300%2C200&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2022/04/dsc_00345.jpg?resize=768%2C513&amp;ssl=1 768w\" sizes=\"(max-width: 999px) 100vw, 999px\" data-recalc-dims=\"1\" /><figcaption>Meher enjoying being part of <em>WordCamp Nagpur in 2017</em></figcaption></figure>\n\n\n\n<p>In 2015, while browsing Facebook, Meher came across an advertisement for something called WordCamp Mumbai, an event that had taken two days before. She did a little digging to learn what a WordCamp was, and about the people behind it. She took the plunge and joined the WordPress Mumbai Meetup group.</p>\n\n\n\n<p>Her first Meetup experience was not love at first sight. She felt the topics were for advanced users, and the timing late in the evening made it difficult to attend.</p>\n\n\n\n<p>But a few months later, the Meetup addressed a topic that could help her resolve an issue in one of her current projects. She made the effort to show up and came away with a number of important tips.&nbsp;The speaker had taken the time to speak to individual attendees. When he came to Meher, she took the opportunity to ask a couple of questions about her project issues. </p>\n\n\n\n<p>Thereafter she went to more Meetups and got to know the people behind this group, just as they started talking about WordCamp Mumbai 2016.</p>\n\n\n\n<h2>A WordCamp adventure</h2>\n\n\n\n<figure class=\"wp-block-image size-full is-resized\"><img loading=\"lazy\" src=\"https://i1.wp.com/wordpress.org/news/files/2022/04/wcm16.jpg?resize=600%2C800&#038;ssl=1\" alt=\"Meher pictured with the WordCamp Mumbai 2016 sign \" class=\"wp-image-12758\" width=\"600\" height=\"800\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2022/04/wcm16.jpg?w=600&amp;ssl=1 600w, https://i1.wp.com/wordpress.org/news/files/2022/04/wcm16.jpg?resize=225%2C300&amp;ssl=1 225w\" sizes=\"(max-width: 600px) 100vw, 600px\" data-recalc-dims=\"1\" /><figcaption>Meher discovering <em>WordCamps in Mumbai in 2016</em></figcaption></figure>\n\n\n\n<p>Meher expressed interest in being a part of the coming&nbsp; WordCamp Mumbai and started in an entry-level role with basic responsibilities.</p>\n\n\n\n<p>At first, she thought WordCamp was a formal conference with about 100 people. So on the first day of WordCamp Mumbai 2016, she was surprised to see so many WordCamp enthusiasts attending and enjoying such a relaxed and friendly conference.</p>\n\n\n\n<p>After that great experience, Meher went to many more meetups and did more volunteering. She started taking on responsibilities in the coming WordCamps and getting to know the different aspects of the camp.&nbsp;</p>\n\n\n\n<p>In the following years, at each WordPress, she took up a new role like speaker vetting, sponsors, and volunteer coordination. This allowed her to know more about what an organizer needs to do, from planning to execution, to make WordCamp a successful event.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" width=\"900\" height=\"600\" src=\"https://i2.wp.com/wordpress.org/news/files/2022/04/wcmumbai-17.jpg?resize=900%2C600&#038;ssl=1\" alt=\"WordCamp Mumbai 2017 group photo of the team\" class=\"wp-image-12765\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2022/04/wcmumbai-17.jpg?w=900&amp;ssl=1 900w, https://i2.wp.com/wordpress.org/news/files/2022/04/wcmumbai-17.jpg?resize=300%2C200&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2022/04/wcmumbai-17.jpg?resize=768%2C512&amp;ssl=1 768w\" sizes=\"(max-width: 900px) 100vw, 900px\" data-recalc-dims=\"1\" /><figcaption>With the team at <em>WordCamp Mumbai in 2017</em></figcaption></figure>\n\n\n\n<p>Meher is grateful for her WordPress journey which was fostered in the Mumbai community. It has been filled with beautiful surprises.&nbsp;</p>\n\n\n\n<p>When people ask why she’s chosen to specialize professionally in WordPress, Meher says WordPress is easy to teach a non-technical person, yet it is still highly customizable. Being a WordPress developer has given her the opportunity to work&nbsp; remotely for global web development companies that let her think out of the box. And she learns new skills with every release.</p>\n\n\n\n<h3>The community makes WordPress special</h3>\n\n\n\n<p>Meher says that some of her most memorable WordPress moments have revolved around special friendships, trying new things, and participating in community building.&nbsp;</p>\n\n\n\n<p>WordPress has let her explore different parts of India, make new friends locally and internationally, and encourage women to be a part of meetup groups and events across India.&nbsp;</p>\n\n\n\n<p>One of Meher’s biggest dreams was to lead WordCamp Mumbai as a lead organizer and show others what could be achieved by working together in open source. In 2019, she did just that and has volunteered at international WordCamps and meetups since.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"1024\" height=\"515\" src=\"https://i0.wp.com/wordpress.org/news/files/2022/04/wc-19.jpg?resize=1024%2C515&#038;ssl=1\" alt=\"Meher speaking at WordCamp Mumbai 2019\" class=\"wp-image-12731\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2022/04/wc-19.jpg?resize=1024%2C515&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2022/04/wc-19.jpg?resize=300%2C151&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2022/04/wc-19.jpg?resize=768%2C386&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2022/04/wc-19.jpg?w=1247&amp;ssl=1 1247w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption>Taking to the stage at WordCamp Mumbai in 2019</figcaption></figure>\n\n\n\n<p>As part of her enthusiasm for sharing the opportunities WordPress can give people, especially women, she has given time to co-organize two global <a href=\"https://wptranslationday.org/\">WordPress Translation month long events</a> and contributor events in India.&nbsp;&nbsp;&nbsp;</p>\n\n\n\n<p>Meher said: “I was first introduced to translation at one of the meetups which was organised to support the WordPress Translation Day. I realized this was another way to support my local communities and bring the power of WordPress to them by contributing in Gujarati and Hindi. I did not imagine I would a few years later be a global organizer for the event itself!”</p>\n\n\n\n<p>With her commitment to ongoing learning as a developer and to model what she believes about the value and community growth opportunities of open source, Meher has given time and energy to the Marketing Team, where she has been a Team Rep, to the Training Team, and to the Core Team contributing to multiple releases.&nbsp;</p>\n\n\n\n<h2>The developer adventure with WordPress is unlimited</h2>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>At the start of my software developer journey, I always thought the C++ and Java were the only skills you required to excel in your career. From the time I started exploring WordPress in depth, I realized the potential and the power of WordPress in web development.</p><cite>Meher Bala</cite></blockquote>\n\n\n\n<p>Being a part of the WordPress community, Meher learned that there is so much more than just building blogs on WordPress. She started exploring different features of WordPress, created her first theme, and eventually specialized as a frontend specialist.</p>\n\n\n\n<p>Meher now works as a consultant and front end developer with an international agency specializing in WordPress. Asked what she thought was the best thing about being a WordPress developer, Meher replied: &#8220;Through WordPress, I have an opportunity to build unique out of the box websites and work&nbsp;remotely for global web development companies that encourages you to think out of the box. There is always opportunity to continuously advance my coding skills and learn new techniques with every release.&#8221; </p>\n\n\n\n<p>She believes that there is no limit to where using the software can take you and what you can combine it with to find solutions to projects big and small.</p>\n\n\n\n<p>If you earn a living from WordPress, her advice is from the heart: try to give back to the WordPress community.</p>\n\n\n\n<p>“I am sure you will learn or teach something new and definitely make friends across the world. There is no shame in making mistakes, as you can learn from them and develop your skills further. You can also help others as they build their skills.”</p>\n\n\n\n<p>Meher added: “Don’t let the things you find difficult get in the way of your success.”</p>\n\n\n\n<h2 id=\"share-the-stories\">Share the stories</h2>\n\n\n\n<p>Help share these stories of open source contributors and continue to grow the community. Meet more WordPressers in the <a href=\"https://wordpress.org/news/category/newsletter/interviews/\">People of WordPress series</a>.</p>\n\n\n\n<h2>Contributors</h2>\n\n\n\n<p>Thanks to Abha Thakor (<a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a>), Larissa Murillo (<a href=\'https://profiles.wordpress.org/lmurillom/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>lmurillom</a>), Mary Baum (<a href=\'https://profiles.wordpress.org/marybaum/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>marybaum</a>), Chloé Bringmann (<a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a>), and Meg Phillips (<a href=\'https://profiles.wordpress.org/megphillips91/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>megphillips91</a>) for interviews, writing and image work on this story. Thank you to Meher Bala (<a href=\'https://profiles.wordpress.org/meher/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>meher</a>) for sharing her experiences and to Josepha Haden Chomphosy (<a href=\'https://profiles.wordpress.org/chanthaboune/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chanthaboune</a>) and Topher DeRosia (<a href=\'https://profiles.wordpress.org/topher1kenobe/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>topher1kenobe</a>) for their support of the series. </p>\n\n\n\n<div class=\"wp-block-media-text is-stacked-on-mobile is-vertically-aligned-center\" style=\"grid-template-columns:29% auto\"><figure class=\"wp-block-media-text__media\"><img loading=\"lazy\" width=\"180\" height=\"135\" src=\"https://i1.wp.com/wordpress.org/news/files/2020/03/heropress_logo_180.png?resize=180%2C135&#038;ssl=1\" alt=\"HeroPress logo\" class=\"wp-image-8409 size-full\" data-recalc-dims=\"1\" /></figure><div class=\"wp-block-media-text__content\">\n<p class=\"has-small-font-size\"><em>This People of WordPress feature is inspired by an essay originally published on </em><a href=\"https://heropress.com/\"><em>HeroPress.com</em></a><em>, a community initiative created by Topher DeRosia. It highlights people in the WordPress community who have overcome barriers and whose stories might otherwise go unheard. </em>#HeroPress </p>\n</div></div>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"12706\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:69:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 6.0 Beta 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2022/04/wordpress-6-0-beta-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 26 Apr 2022 16:43:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=12690\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"WordPress 6.0 Beta 3 is now available for testing! You can download and help test Beta 3 in three ways.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Dan Soschin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:5387:\"\n<p>WordPress 6.0 Beta 3 is now available for testing!</p>\n\n\n\n<p><strong>This version of the WordPress software is under development</strong>. Please do not install, run, or test this version of WordPress production or mission-critical websites. Instead, it is recommended that you test Beta 3 on a test server and site.&nbsp;</p>\n\n\n\n<p>You can test WordPress 6.0 Beta 3 in three ways:</p>\n\n\n\n<p><strong>Option 1: </strong>Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the “Bleeding edge” channel and “Beta/RC Only” stream).</p>\n\n\n\n<p><strong>Option 2: </strong>Direct download the <a href=\"https://wordpress.org/wordpress-6.0-beta3.zip\">beta version here (zip)</a>.</p>\n\n\n\n<p><strong>Option 3:</strong> Use WP-CLI to test: <code>wp core update --version=6.0-beta3</code>.<br><em>Do not use this option if your filesystem is case-insensitive.</em></p>\n\n\n\n<p>The current target for the final 6.0 release is May 24, 2022, which is in less than a month!&nbsp;</p>\n\n\n\n<p>Additional information on the full <a href=\"https://make.wordpress.org/core/6-0/\">6.0 release cycle is available here</a>.</p>\n\n\n\n<p>Check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/dev-notes+6-0/\">6.0-related developer notes</a> in the coming weeks which will detail all upcoming changes.</p>\n\n\n\n<h2>See What’s in Beta 3</h2>\n\n\n\n<p>Since Beta 2, various items have been addressed, including (but not limited to):&nbsp;</p>\n\n\n\n<ul><li>Twenty Twenty-Two: Implement alternate json files <a href=\"https://core.trac.wordpress.org/ticket/55433\">#55433</a></li><li>Fix duotone rendering in site editor <a href=\"https://github.com/WordPress/gutenberg/pull/37727\">#37727</a>&nbsp;</li><li>Create Comments Title block with simple styling <a href=\"https://github.com/WordPress/gutenberg/pull/40419\">#40419</a>&nbsp;</li><li>Navigation block: After choosing an option from Select Menu, focus after block render <a href=\"https://github.com/WordPress/gutenberg/pull/40390\">#40390</a></li><li>Add comment id to all comments inside comments query loop <a href=\"https://github.com/WordPress/gutenberg/pull/40268\">#40268</a></li><li>Add post-comments-form block to comments template <a href=\"https://github.com/WordPress/gutenberg/pull/40256\">#40256</a></li><li>Elements: Add styles to the footer before the block is rendered <a href=\"https://github.com/WordPress/gutenberg/pull/37728\">#37728</a></li><li>Add default comment status to discussion settings&nbsp; <a href=\"https://core.trac.wordpress.org/ticket/55567\">#55567</a></li><li>Fix styles for nested elements (link color) <a href=\"https://core.trac.wordpress.org/ticket/55567\">#55567</a></li><li>Move <code>wp_enqueue_block_style()</code> to <code>wp-includes/script-loader.php</code>, for better consistency <a href=\"https://core.trac.wordpress.org/ticket/55182\">#55182</a>, <a href=\"https://core.trac.wordpress.org/ticket/55148\">#55148</a></li><li>Move administration related hooks to admin-filters.php <a href=\"https://core.trac.wordpress.org/ticket/54795\">#54795</a></li></ul>\n\n\n\n<h2>Update on the Webfonts API and Style Variations in Twenty Twenty-Two</h2>\n\n\n\n<p>A <a href=\"https://wordpress.org/news/2022/04/wordpress-6-0-beta-1/\">prior announcement</a> for WordPress 6.0 Beta 1 included a reference to “Webfonts API:<strong> </strong>Manage local fonts with PHP or theme.json”, as a feature that would be included in the release. WordPress 6.0 Beta 3 will allow theme authors to use webfonts in theme.json, with a public API for plugins to register and enqueue webfonts available in a future version for WordPress. Beta 3 will also include <a href=\"https://core.trac.wordpress.org/ticket/55433\">three new style variations</a> to the Twenty Twenty-Two default theme.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Testing for issues is critical for stabilizing a release throughout its development. Testing is also a great way to contribute to WordPress. If you are new to testing, check out this <a href=\"https://make.wordpress.org/test/2022/04/12/help-wanted-test-wordpress-6-0/\">detailed guide</a> that will walk you through how to get started.</p>\n\n\n\n<p>If you think you have run into an issue, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. If you are comfortable writing a reproducible bug report, you can <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>. This is also where you can find a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p>Thank you to the following contributors for collaborating on this post: <a href=\'https://profiles.wordpress.org/dansoschin/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>dansoschin</a>&nbsp; <a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a>, <a href=\'https://profiles.wordpress.org/audrasjb/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>audrasjb</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p><strong>And now another WordPress haiku:</strong></p>\n\n\n\n<p>Release day is near<br>6.0 abounds with joy<br>New features soon here</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"12690\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 6.0 Beta 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2022/04/wordpress-6-0-beta-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 19 Apr 2022 16:43:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=12666\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:337:\"WordPress 6.0 Beta 2 is now available for testing! This version of the WordPress software is under development. Please do not install, run, and test this version of WordPress on a production or mission-critical website. Instead, it is recommended that you test Beta 2 on a test server and site.&#160; You can test the WordPress [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Chloe Bringmann\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:5119:\"\n<p>WordPress 6.0 Beta 2 is now available for testing!</p>\n\n\n\n<p><strong>This version of the WordPress software is under development</strong>. Please do not install, run, and test this version of WordPress on a production or mission-critical website. Instead, it is recommended that you test Beta 2 on a test server and site.&nbsp;</p>\n\n\n\n<p>You can test the WordPress 6.0 Beta 2 in three ways:</p>\n\n\n\n<p><strong>Option 1: </strong>Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the “Bleeding edge” channel and “Beta/RC Only” stream).</p>\n\n\n\n<p><strong>Option 2: </strong>Direct download the<a href=\"https://wordpress.org/wordpress-6.0-beta2.zip\"> beta version here (zip)</a>.</p>\n\n\n\n<p><strong>Option 3:</strong> Use WP-CLI to test: <code>wp core update --version=6.0-beta2</code><br><strong><em>Do not use this option if your filesystem is case-insensitive.</em></strong></p>\n\n\n\n<p>The current target for the final release is May 24, 2022, which is about five weeks away.&nbsp;</p>\n\n\n\n<p>Additional information on the full <a href=\"https://make.wordpress.org/core/6-0/\">6.0 release cycle is available</a>.</p>\n\n\n\n<p>Check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/dev-notes+6-0/\">6.0-related developer notes</a> in the coming weeks, which will detail all upcoming changes.</p>\n\n\n\n<h2><strong>What’s New In Beta 2</strong></h2>\n\n\n\n<p>As a reminder, contributors have fixed&nbsp;<a href=\"https://core.trac.wordpress.org/query?status=closed&amp;resolution=fixed&amp;milestone=6.0&amp;group=component&amp;order=priority\">209 tickets in WordPress 6.0</a>, including&nbsp;<a href=\"https://core.trac.wordpress.org/query?status=closed&amp;status=reopened&amp;changetime=04%2F12%2F2022..04%2F19%2F2022&amp;type=enhancement&amp;type=feature+request&amp;milestone=6.0&amp;group=component&amp;col=id&amp;col=summary&amp;col=type&amp;col=status&amp;col=milestone&amp;col=changetime&amp;col=owner&amp;col=priority&amp;col=keywords&amp;order=changetime\">110 new features and enhancements</a>. Each beta cycle focuses on bug fixes, and more are on the way with your help through testing. Here are a few of the changes you will find in Beta 2 specifically:&nbsp;</p>\n\n\n\n<ul><li>Block Editor: Prevent styles from being added to the site editor (#<a href=\"https://core.trac.wordpress.org/ticket/55567\">55567</a>)</li><li>Patterns REST API: Add &#8216;inserter&#8217; to the schema&nbsp; (#<a href=\"https://core.trac.wordpress.org/ticket/55567\">55567</a>)</li><li>Don’t load remote patterns twice in WP_REST_Block_Patterns_Controller::get_items (#<a href=\"https://core.trac.wordpress.org/ticket/55567\">55567</a>)</li><li>Add the ability to filter the whole notification email in retrieve_password (<a href=\"https://core.trac.wordpress.org/ticket/54690\">#54690</a>)</li><li>Avoid translating empty plugin headers (<a href=\"https://core.trac.wordpress.org/ticket/54586\">#54586</a>)</li></ul>\n\n\n\n<h3><strong>Note on Webfonts API</strong></h3>\n\n\n\n<p>Last week’s announcement for <a href=\"https://wordpress.org/news/2022/04/wordpress-6-0-beta-1/\">WordPress 6.0 Beta 1</a> includes a reference to “Webfonts API:<strong> </strong>Manage local fonts with PHP or theme.json,” as a feature that would be included in the release. This specific functionality was not included in Beta 2 but may be available at RC.</p>\n\n\n\n<h2><strong>How to Help</strong></h2>\n\n\n\n<p>Testing for issues is critical for stabilizing a release throughout its development. Testing is also a great way to contribute to WordPress. If you are new to testing, check out this <a href=\"https://make.wordpress.org/test/2022/04/12/help-wanted-test-wordpress-6-0/\">detailed guide</a> that will walk you through how to get started.</p>\n\n\n\n<p>If you think you have run into an issue, please report it to the<a href=\"https://wordpress.org/support/forum/alphabeta/\"> Alpha/Beta area</a> in the support forums. If you are comfortable writing a reproducible bug report, you can<a href=\"https://core.trac.wordpress.org/newticket\"> file one on WordPress Trac</a>. This is also where you can find a list of<a href=\"https://core.trac.wordpress.org/tickets/major\"> known bugs</a>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p>Thank you to the following contributors for collaborating on this post: <a href=\'https://profiles.wordpress.org/dansoschin/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>dansoschin</a>, <a href=\'https://profiles.wordpress.org/annezazu/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>annezazu</a>, <a href=\'https://profiles.wordpress.org/costdev/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>costdev</a>, <a href=\'https://profiles.wordpress.org/priethor/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>priethor</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h4>And now a WordPress Haiku:</h4>\n\n\n\n<p>We code fervently</p>\n\n\n\n<p>A breathless pause for the test</p>\n\n\n\n<p>Key tapping resumes</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"12666\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:61:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"WP Briefing: Episode 29: How to Make a WordPress Blog\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://wordpress.org/news/2022/04/episode-29-how-to-make-a-wordpress-blog/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 18 Apr 2022 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=12658\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:150:\"Join our host Josepha Haden Chomphosy as she takes us back to WordPress basics. Learn everything you need to know about how to make a WordPress blog! \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2022/04/WP-Briefing-029.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Santana Inniss\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:16764:\"\n<p>In the twenty-ninth episode of the WordPress Briefing, Executive Director Josepha Haden Chomphosy reminds us of our WordPress roots &#8212; blogging &#8212; and discusses the basics of starting your first blog on WordPress.</p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 id=\"credits\">Credits</h2>\n\n\n\n<ul><li>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a></li><li>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a></li><li>Production:&nbsp;<a href=\"https://profiles.wordpress.org/santanainniss/\">Santana Inniss</a> </li><li>Song: Fearless First by Kevin MacLeod</li></ul>\n\n\n\n<h2>References</h2>\n\n\n\n<ul><li><a href=\"https://learn.wordpress.org/course/getting-started-with-wordpress-get-setup/\">Getting Started with WordPress: Get Setup</a></li><li><a href=\"https://make.wordpress.org/core/2022/04/07/6-0-product-walk-through-recap/\">6.0 Product Walkthrough</a></li><li><a href=\"https://www.meetup.com/wordpress-social-learning/events/285233962/\" data-type=\"URL\" data-id=\"https://www.meetup.com/wordpress-social-learning/events/285233962/\">How to Make a WordPress Blog Social Learning Space Event </a></li><li><a href=\"https://make.wordpress.org/community/events/\">Upcoming WordPress Events</a></li><li><a href=\"https://www.meetup.com/pro/wordpress/\" data-type=\"URL\" data-id=\"https://www.meetup.com/pro/wordpress/\">WordPress Meetup Groups</a></li></ul>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-12658\"></span>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:00:00] </strong>&nbsp;</p>\n\n\n\n<p>Hello everyone. And welcome to the WordPress Briefing. The podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy.</p>\n\n\n\n<p>Here we go.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:00:39] </strong>&nbsp;</p>\n\n\n\n<p>All right. So you&#8217;ve been listening to this podcast for a while. You may be one of these contributors I keep mentioning; you may be an agency owner or freelancer. Maybe you&#8217;ve wondered how to make a WordPress blog for your big idea. Or, maybe you&#8217;re one of the many people who use WordPress for their project or business. Before WordPress was known as a content management system, as a way to get sites online fast, it was a blogging tool.</p>\n\n\n\n<p>We have long since outgrown that, but even 19 years into our journey, blogging is still a key part of what WordPress enables you to do. That&#8217;s because even after those 19 years, the mission of WordPress is still the same. And that is to democratize publishing, to help people have a place online where they can tell their stories or share their projects or set up their businesses.</p>\n\n\n\n<p>If you&#8217;ve ever tried to set up a blog, you know that there isn&#8217;t a lot of information about what to know before you get going at all. So I&#8217;m going to talk about that a little bit today. And just by the way, if you heard the word blog right now and thought, oh, Josepha, how old fashioned? I think it&#8217;s important to remember that there&#8217;s a business advantage to having well-written, relevant content on your website.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:01:59]</strong></p>\n\n\n\n<p>And if you&#8217;re not blogging for business, because not all of us are, then the benefits are a little different but still important to my mind. Things like the cathartic benefits of journaling, a chance to build community, and the general importance of preserving wisdom for the ages. Anyway, back to the topic at hand. Before we can get to any of the fancy things that WordPress can do nowadays, it&#8217;s important to know a few things as you get ready to set up your first ever website.&nbsp;&nbsp;</p>\n\n\n\n<p>So let&#8217;s dive in. Here is how you need to get yourself started. First, have an idea and a plan. So have an idea for what you&#8217;re doing, the concept of your content, who you want to reach, and some concept of a domain name. I would encourage you to not necessarily get your heart set on a domain name at first. Cause, like, if you want the domain name, wordpress.org, like we own that, you can have that! But if you know that you want a domain like WordPressbloggingforthefuture.com, like that one might be more available. And if you know the kind of words you want in your domain, you can be a bit flexible about what is there.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:03:09]</strong></p>\n\n\n\n<p>The second thing that you need to do is that if you are just getting started, ask yourself the question, what sort of host do I want? We kind of mentioned all along the WordPress process that, like, you need a good host, but it’s not always clear where that decision has to happen. It happens right here at the start, before you even know what WordPress is most of the time.</p>\n\n\n\n<p>So, the earliest question that you have to answer for yourself is what sort of host do I want? Where do I want my site to live? So ask yourself how much you want to get into the maintenance and configuration of your website and the hardware that it lives on versus creating content or keeping your shop up to date.&nbsp;</p>\n\n\n\n<p>There&#8217;s this whole spectrum of hosting options, and they range from full service where they will keep your WordPress software up to date, provide daily backups, and have customer support if something goes really wrong. So it ranges all the way from full service like that all the way down to essentially zero services, just kind of hands-off.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:04:11]&nbsp;</strong></p>\n\n\n\n<p>They give you a space to keep your WordPress software, to keep your WordPress site. But they leave everything else up to you. They leave the backups up to you. They leave updating up to you, things like. So that&#8217;s the first thing you have to ask yourself. And the first question you have to be able to answer. Most of the time, you will want to start with one of the full-service options. That way, you know that your software is set up correctly and safely from the start. And as you learn more about the software and what you want and what you need, and you have the ability to learn in the time that you have, the more that you can add on either service with the existing hosts that you chose or moving to a different host; however that works out for you.</p>\n\n\n\n<p>So if that one sounds like the right option, then you choose a host, go to their site, and actually most of them will have a way to walk you through how to set up a WordPress site inside their system. Most of the time, it&#8217;s just one click and then they ask you some questions to get some configurations right.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:05:10]&nbsp;</strong></p>\n\n\n\n<p>The other option that on the like zero, zero service side, that&#8217;s not quite fair, but you know, the other side of that spectrum that probably will be appealing to you if you are already familiar with code or already know how to manage a server or, or you know how to work in this thing called c-panel, et cetera.</p>\n\n\n\n<p>So if you already have a lot of information on how all of that works, you can, if you want to, head over to wordpress.org/download, and you can download a zip file of the WordPress software and set that up in your own environment.&nbsp;</p>\n\n\n\n<p>Okay, quick check here. If this all sounds roughly doable to you, or at least it feels like we&#8217;re in the right starting point, but you find yourself thinking, gosh, I just wish she would slow down a little.</p>\n\n\n\n<p>I&#8217;ve got you covered. In the show notes, you&#8217;ll find a link to one of the Learn WP courses for getting started with WordPress. There&#8217;s a section on choosing a host as well as various other early steps of this process. So if you felt like I blazed through all of that, which honestly I kind of did, you can work through those lessons in that course, at your own pace, and it&#8217;s, and it&#8217;s really a very good guide.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:06:24]&nbsp;</strong></p>\n\n\n\n<p>All right. Let&#8217;s pretend we did all of that. Now you&#8217;ve got yourself a website. The thing that you will want to do next, or rather the first thing that you&#8217;ll notice once you get your site up and running, is that there&#8217;s this ‘Hello World’ post– there&#8217;s a post that already exists in there. The Hello World post is a placeholder for the common features of a blog post.</p>\n\n\n\n<p>There, you can find your featured image, your title, your content, and even some fake comments. You can either edit this post so that you can see how your writing will look from the start, and you can kind of compare like, okay, the Hello World part over here on this page, exists in this field over here on this page. So you can kind of see where everything works, how it all looks together. Or, if you&#8217;re more familiar with WordPress or CMS in general, you can simply remove that and start fresh.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:07:17]</strong></p>\n\n\n\n<p>So we&#8217;ve got now a website, we know, kind of, how to look at our posts and create posts, where comments are, where they can kind of be moderated and stuff. And so, the most fun task for everyone is choosing a theme. But if it&#8217;s not a fun task, if it doesn&#8217;t sound like a fun task to you, I can help you kind of do some, choose your own adventure guiding questions here.&nbsp;</p>\n\n\n\n<p>Firstly, you can ask yourself how you want the site to look. Do you want it to mostly be a lot of photos or entirely words, mostly animations? You can head to the theme directory and search for a theme with most of the features that you want. There&#8217;s like a filtering system where you can put in, like, you want three columns so that you can have three columns of text if you want it to look kind of like an old school newspaper kind of layout and things like.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:08:12]</strong></p>\n\n\n\n<p>There&#8217;s also a way to look for themes inside your instance, your WordPress site, but like, if you haven&#8217;t set that up yet, but you do still want to see kind of what your theme options are, you can go to wordpress.org/themes and and take a look at what&#8217;s out there. Just as a quick side note, if you get to that theme directory, if you get to wordpress.org/themes, and it feels overwhelming, which I can understand, I recommend starting with a theme that is designed for blogging specifically so that you can see how things look right away.</p>\n\n\n\n<p>And there&#8217;s actually a theme that does come with every WordPress site. So if you&#8217;re not ready, you can skip this thing entirely and just work with the theme that&#8217;s already there. Every word, press instance ships with a theme and it is fully functional when you, when you get your site up and running. So you don&#8217;t need to choose a theme right now if you don&#8217;t feel ready.</p>\n\n\n\n<p>And then the other very fun thing that people do with their WordPress sites is to add plugins to them. So plugins are these little pieces of software that you add on to the WordPress software that lets it do additional things. It adds additional functionality. The questions that you can ask to kind of guide yourself through what sorts of plugins you might want, what sorts of functionality you might want to add to your site are a little similar to the ones that you want to ask for figuring out which theme.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:09:36]</strong></p>\n\n\n\n<p>So figure out if there are tasks that you need visitors to do. Do you need them to contact you? Do you want them to watch a video? Should they review and respond to questions?</p>\n\n\n\n<p>If you have a concept of the things that you want users to do on your website, then you can head to the plugin directory and search for a plugin with features that you need. Also, there are just endless lists of recommended plugins out there; if that is something that you find valuable as part of your research, those are also easy to find.</p>\n\n\n\n<p>And as a general side note here, there are even more plugins than there are themes. So if you have gotten to this point and feel like you don&#8217;t quite know the answers to the questions that I shared, and, and it&#8217;s going to be a while until you feel like you can know what those answers are. That&#8217;s totally fine.</p>\n\n\n\n<p>I&#8217;ll tell you this. I have never seen a site without a contact form. So feel free to begin your journey there. There are a lot of great plugins for contact forms and it can kind of help you figure out how to work with plugins in that way. So yeah, I made it sound like you can get a WordPress website built in like seven minutes and on the one hand you definitely can.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:09:36]</strong></p>\n\n\n\n<p>And on the other hand, it&#8217;s still a little bit more complicated. So here I have a final note for everyone. You will hear around the WordPress ecosystem. And obviously, here, are some things that could make you feel a little nervous about doing this for the first time. Things like the five-second installation, which WordPress has been famous for years.</p>\n\n\n\n<p>But also about how easy and simple it all is. And as somebody who was once in the position of learning WordPress for the first time, like I first encountered a WordPress site in 2009 and I started learning how to use WordPress in 2010. So I can say with confidence that once you learn it, it&#8217;s easy.</p>\n\n\n\n<p>We are the easiest of the hard options for CMS. Like content management systems are just complicated, but we are the easiest one out there. And so, as you&#8217;re learning, I want to just remind you to celebrate your small wins along the way. If you feel like you&#8217;re late to this blogging game, like you should have had a website for years. I mean, sure that could be true. And yes, the best time to plant a tree was 20 years ago. But the second-best time to plant that tree is today.&nbsp;</p>\n\n\n\n<p>WordPress didn&#8217;t start out powering over 40% of the web, and your first site can&#8217;t be immediately measured in the millions of readers. So, what will your small beginning lead you to?&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:12:25]</strong></p>\n\n\n\n<p>And now that brings us to our small list of big things.&nbsp;</p>\n\n\n\n<p>The first one, the next release of WordPress, WordPress 6.0, has reached its beta phase. That means the full focus is on finding and fixing the bugs we accidentally created during this development cycle. Beta two comes out tomorrow and you can follow along in the core channel in the Making WordPress Slack.</p>\n\n\n\n<p>If you&#8217;ve never seen how those releases get packaged, and if you just want to keep an eye on what everybody&#8217;s doing so that you can be the first to know, yeah, Making WordPress Slack is the way to go.&nbsp;</p>\n\n\n\n<p>The second thing on our small list is that speaking of WordPress 6.0, we had the public walk through a couple of weeks ago, which means that in a few weeks, I&#8217;ll do a WordPress 6.0 sneak peek. I&#8217;ll share some highlights of the release features and why I think they are super important for you to take a look. Sooner rather than later.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:13:22]</strong></p>\n\n\n\n<p>And then the final, big thing, if you are new to WordPress and this episode has you all fired up to start your blog, we have a bunch of contributors over on the Learn WP team that have just the thing for you.</p>\n\n\n\n<p>You can join the online social learning space called How to Make a WordPress Blog. It&#8217;s a free online event that will help you get started. I&#8217;ll link the information in the show notes below. And I&#8217;ll also share in the show notes, a list of WordPress Meetup groups, where you can find more opportunities to learn and get support from other people locally who are also doing things with WordPress.&nbsp;</p>\n\n\n\n<p>But you can also find a list in the dashboard of your newly installed WordPress blog you no doubt have after this podcast.&nbsp;&nbsp;</p>\n\n\n\n<p>And that my friends is your small list of big things. Thank you for tuning in today for the WordPress Briefing. I&#8217;m your host Josepha Haden Chomphosy, and I&#8217;ll see you again in a couple of weeks.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"12658\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:63:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 6.0 Beta 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2022/04/wordpress-6-0-beta-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 12 Apr 2022 19:08:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=12644\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"WordPress 6.0 Beta 1 is now available for download and testing.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Dan Soschin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:7809:\"\n<p>WordPress 6.0 Beta 1 is now available for download and testing.</p>\n\n\n\n<p><strong>This version of the WordPress software is under development</strong>. Please do not install, run, and test this version of WordPress on a production or mission-critical website. Instead, it is recommended that you test Beta 1 on a test server and site.&nbsp;</p>\n\n\n\n<p>You can test the WordPress 6.0 Beta 1 in three ways:</p>\n\n\n\n<ul><li>Option 1: Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the “Bleeding edge” channel and “Beta/RC Only” stream).</li><li>Option 2: Direct download the <a href=\"https://wordpress.org/wordpress-6.0-beta1.zip\">beta version here (zip)</a>.</li><li>Option 3: Use WP-CLI to test: <code>wp core update --version=6.0-beta1</code>. <br><strong><em>Do not use this option if your filesystem is case-insensitive.</em></strong></li></ul>\n\n\n\n<p>The current target for the final release is May 24, 2022, which is about six weeks away.&nbsp;</p>\n\n\n\n<p>Additional information on the full <a href=\"https://make.wordpress.org/core/6-0/\">6.0 release cycle is available</a>.</p>\n\n\n\n<p>Check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/dev-notes+6-0/\">6.0-related developer notes</a> in the coming weeks which will detail all upcoming changes.</p>\n\n\n\n<h2><strong>Keep WordPress Bug Free – Help with Testing</strong></h2>\n\n\n\n<p>Testing for issues is critical for stabilizing a release throughout its development. Testing is also a great way to contribute. If you have never tested a beta release before, <a href=\"https://make.wordpress.org/test/2022/04/12/help-wanted-test-wordpress-6-0/\">this detailed guide</a> will walk you through how to get started.</p>\n\n\n\n<p>Testing helps make sure that this and future releases of WordPress are as stable and issue-free as possible. And anyone can do it – especially great WordPress community members just like you.</p>\n\n\n\n<p>Want to know more about testing releases like this one? Read about the <a href=\"https://make.wordpress.org/test/\">testing initiatives</a> that happen in Make Core. You can also join a <a href=\"https://wordpress.slack.com/messages/core-test/\">publicly-accessible channel</a> on the <a href=\"https://wordpress.slack.com\">Making WordPress Slack workspace</a>.</p>\n\n\n\n<p>If you think you have run into an issue, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. If you are comfortable writing a reproducible bug report, you can <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>. This is also where you can find a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<p>To review features in the Gutenberg releases since WordPress 5.9 (the most recent major release of WordPress), access the <em>What’s New In Gutenberg</em> posts for 13.0 (release pending), <a href=\"https://make.wordpress.org/core/2022/03/30/whats-new-in-gutenberg-12-9-30-march/\">12.9</a>, <a href=\"https://make.wordpress.org/core/2022/03/16/whats-new-in-gutenberg-12-8-16-march/\">12.8</a>, <a href=\"https://make.wordpress.org/core/2022/03/02/whats-new-in-gutenberg-12-7-2-march/\">12.7</a>, <a href=\"https://make.wordpress.org/core/2022/02/16/whats-new-in-gutenberg-12-6-16-february/\">12.6</a>, <a href=\"https://make.wordpress.org/core/2022/02/03/whats-new-in-gutenberg-12-5-february-2nd/\">12.5</a>, <a href=\"https://make.wordpress.org/core/2022/01/19/whats-new-in-gutenberg-12-4-19-january/\">12.4</a>, <a href=\"https://make.wordpress.org/core/2022/01/05/whats-new-in-gutenberg-12-3-5-january/\">12.3</a>, <a href=\"https://make.wordpress.org/core/2021/12/22/whats-new-in-gutenberg-12-2-22-december/\">12.2</a>, <a href=\"https://make.wordpress.org/core/2021/12/08/whats-new-in-gutenberg-12-1-8-december/\">12.1</a>, and <a href=\"https://make.wordpress.org/core/2021/11/29/whats-new-in-gutenberg-12-0-24-november/\">12.0</a>.&nbsp;&nbsp;</p>\n\n\n\n<p>Beyond the noted changes, which include more than 400 updates and 500 bug fixes for the editor, contributors have fixed <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;milestone=6.0&amp;group=component&amp;max=500&amp;col=id&amp;col=summary&amp;col=owner&amp;col=type&amp;col=priority&amp;col=component&amp;col=version&amp;order=priority\">189 tickets for the WordPress 6.0</a> core, including <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;status=reopened&amp;type=enhancement&amp;type=feature+request&amp;milestone=6.0&amp;col=id&amp;col=summary&amp;col=type&amp;col=status&amp;col=milestone&amp;col=owner&amp;col=priority&amp;col=changetime&amp;col=keywords&amp;order=changetime\">91 new features and enhancements</a>. More fixes are on the way.</p>\n\n\n\n<h2><strong>Some Highlights</strong></h2>\n\n\n\n<p><em>Want to know what’s new in version 6.0? Read on for some highlights.</em></p>\n\n\n\n<p>The WordPress 6.0 release will be packed with all kinds of improvements. Here are just a few:</p>\n\n\n\n<ul><li><strong>Style Switching:</strong> <a href=\"https://make.wordpress.org/core/2022/03/03/core-editor-improvement-choose-your-style/\">switch up the look and feel of your site</a>, all in one block theme. No need to change themes!</li><li><strong>More template options:</strong> use blocks to edit five more templates (author, date, categories, tag, and taxonomy).</li><li><strong>Multi-select: </strong>Easily select text across multiple blocks. Edit to your liking.</li><li><strong>Retain Styles: </strong>Keep your custom styles in place, whether transforming between blocks or creating new buttons.&nbsp;</li><li><strong>More patterns in more places:</strong> the Quick Inserter surfaces patterns that might work well for the condition you’re in, baking in relevant patterns for template parts and pages you’re working on.&nbsp;</li><li><strong>List View improvements: </strong>New keyboard shortcuts (shift + click) let you select multiple blocks to modify in bulk (reposition, delete, etc.), see your content at a glance with a collapsed by default view, and more.</li><li><strong>Refined design tools: </strong>Explore<strong> </strong>a new color panel, transparency options, more group block variations to create new layout options (Stack, Row), the ability to set your featured image in a Cover block, control the exact size of your featured image, gap support for the Gallery block, and more.</li><li><strong>New blocks: </strong>Comments, Read More, No results in Query Loop, Post Author biography, Avatar blocks.&nbsp;</li><li><strong>Block Locking UI: </strong>Choose to disable the option to remove a block, move it, or both, right in the editor.&nbsp;</li><li><strong>Export block themes: </strong>Explore the improved block theme export tool, as WordPress heads closer to codeless visual block theme building.</li><li><strong>Webfonts API: </strong>Manage local fonts with PHP or theme.json.&nbsp;</li></ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p>Thank you to the following contributors for collaborating on this post: <a href=\'https://profiles.wordpress.org/annezazu/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>annezazu</a>, <a href=\'https://profiles.wordpress.org/chanthaboune/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chanthaboune</a>, <a href=\'https://profiles.wordpress.org/marybaum/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>marybaum</a>, <a href=\'https://profiles.wordpress.org/priethor/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>priethor</a>, and <a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"12644\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"WordPress 5.9.3 Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2022/04/wordpress-5-9-3-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 05 Apr 2022 19:50:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"5.9\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=12575\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"WordPress 5.9.3 is now available! This maintenance release features 9 bug fixes in Core and 9 bug fixes in the block editor.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Jb Audras\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3896:\"\n<p>WordPress 5.9.3 is now available!</p>\n\n\n\n<p>This maintenance release features&nbsp;9 bug fixes in Core and 10 bug fixes in the block editor.</p>\n\n\n\n<p>WordPress 5.9.3 is a short-cycle maintenance release. The next major release will be version&nbsp;<a href=\"https://make.wordpress.org/core/6.0/\">6.0</a>.</p>\n\n\n\n<p>You can&nbsp;<a href=\"https://wordpress.org/wordpress-5.9.3.zip\">download WordPress 5.9.3 from WordPress.org</a>, or visit your Dashboard&nbsp;→ Updates and click “Update Now”.</p>\n\n\n\n<p>If you have sites that support automatic background updates, they’ve already started the update process.</p>\n\n\n\n<p>For more information, browse the&nbsp;<a href=\"https://make.wordpress.org/core/2022/03/30/wordpress-5-9-3-rc-1/\">full list of both Trac and GitHub changes in the release candidate post</a>, or check out the&nbsp;<a href=\"https://wordpress.org/support/wordpress-version/version-5-9-3/\">changelog of version 5.9.3 on HelpHub</a>.</p>\n\n\n\n<h2 id=\"thanks-and-props\">Thanks and props!</h2>\n\n\n\n<p>The 5.9.3 release was led by&nbsp;<a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>&nbsp;and&nbsp;<a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a>.</p>\n\n\n\n<p>Special props to&nbsp;<a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>&nbsp;for running mission control.</p>\n\n\n\n<p>Thank you to everyone who helped make WordPress 5.9.3 happen:</p>\n\n\n\n<p class=\"alignfull is-style-wporg-props-medium\"><a href=\"https://profiles.wordpress.org/wildworks/\">Aki Hamano</a>, <a href=\"https://profiles.wordpress.org/alexstine/\">Alex Stine</a>, <a href=\"https://profiles.wordpress.org/aliakseyenkaihar/\">aliakseyenkaihar</a>, <a href=\"https://profiles.wordpress.org/antonvlasenko/\">Anton Vlasenko</a>, <a href=\"https://profiles.wordpress.org/binarymoon/\">binarymoon</a>, <a href=\"https://profiles.wordpress.org/cbravobernal/\">Carlos Bravo</a>, <a href=\"https://profiles.wordpress.org/costdev/\">Colin Stewart</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a>, <a href=\"https://profiles.wordpress.org/glendaviesnz/\">glendaviesnz</a>, <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/ironprogrammer/\">ironprogrammer</a>, <a href=\"https://profiles.wordpress.org/iulia-cazan/\">Iulia Cazan</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joen/\">Joen A.</a>, <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a>, <a href=\"https://profiles.wordpress.org/jsnajdr/\">jsnajdr</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a>, <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a>, <a href=\"https://profiles.wordpress.org/psmits1567/\">Peter Smits</a>, <a href=\"https://profiles.wordpress.org/pgpagely/\">pgpagely</a>, <a href=\"https://profiles.wordpress.org/rafiahmedd/\">Rafi Ahmed</a>, <a href=\"https://profiles.wordpress.org/richybkreckel/\">Richard B. Kreckel</a>, <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a>, <a href=\"https://profiles.wordpress.org/rufus87/\">Rufus87</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/tobifjellner/\">Tor-Bjorn Fjellner</a>, <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a>, <a href=\"https://profiles.wordpress.org/webcommsat/\">Abha Thakor</a>, <a href=\"https://profiles.wordpress.org/webmandesign/\">Oliver Juhas</a>, and <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"12575\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"The Month in WordPress – March 2022\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2022/04/the-month-in-wordpress-march-2022/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 05 Apr 2022 13:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:22:\"the month in wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=12583\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:325:\"We hope that you and your beloved ones are staying safe during these difficult times. If you’re looking for a way to support the humanitarian crisis in Ukraine, you can refer to this episode of WP Briefing. There you will find a list of Non-Governmental Organizations (NGOs) that can help. In parallel to the work [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"rmartinezduque\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:13170:\"\n<p>We hope that you and your beloved ones are staying safe during these difficult times. If you’re looking for a way to support the humanitarian crisis in Ukraine, you can refer to <a href=\"https://wordpress.org/news/2022/03/episode-26-matt-mullenweg-on-ukraine-community-and-wordpress/\">this episode of WP Briefing</a>. There you will find a list of Non-Governmental Organizations (NGOs) that can help.</p>\n\n\n\n<p>In parallel to the work the community is doing in preparation for the next major release, WordPress 6.0, March has seen the launch of some exciting projects and proposals. Read on to find out more about the latest updates and how to get involved. </p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity\" />\n\n\n\n<h2>The Pattern Directory is open for public submissions</h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://i2.wp.com/wordpress.org/news/files/2022/04/home-patterns.png?ssl=1\"><img loading=\"lazy\" width=\"1024\" height=\"659\" src=\"https://i2.wp.com/wordpress.org/news/files/2022/04/home-patterns.png?resize=1024%2C659&#038;ssl=1\" alt=\"View of the Pattern Directory page at WordPress.org.\" class=\"wp-image-12584\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2022/04/home-patterns.png?resize=1024%2C659&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2022/04/home-patterns.png?resize=300%2C193&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2022/04/home-patterns.png?resize=768%2C494&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2022/04/home-patterns.png?resize=1536%2C988&amp;ssl=1 1536w, https://i2.wp.com/wordpress.org/news/files/2022/04/home-patterns.png?resize=2048%2C1318&amp;ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></a></figure>\n\n\n\n<p>The <a href=\"https://wordpress.org/patterns/new-pattern/\">WordPress Pattern Creator</a> is live! This new tool allows anyone with a WordPress.org user account to build, edit and submit their best block patterns to the <a href=\"https://wordpress.org/patterns/\">Pattern Directory</a>.<br><br>If you&#8217;ve used patterns in WordPress, you&#8217;ll know that they make it easy to add unique layouts to your website. These include galleries, testimonials, pricing tables, and more. Opening the directory to public submissions enables any WordPress user to enjoy a wider variety of patterns to use on their sites.</p>\n\n\n\n<div class=\"wp-container-6 wp-block-buttons\">\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link\" href=\"https://wordpress.org/news/2022/03/get-creative-with-the-all-new-pattern-creator/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Check out the Pattern Creator announcement to learn more</strong></a></div>\n</div>\n\n\n\n<h2>WordPress 6.0 Walkthrough scheduled for April 5, 2022</h2>\n\n\n\n<p>A few updates to the <a href=\"https://make.wordpress.org/core/2022/03/11/wordpress-6-0-planning-update/\">WordPress 6.0 planning</a> were published last month. In case you missed them, <strong>today (April 5) at 15:00 UTC</strong> there is a live and interactive <a href=\"https://make.wordpress.org/core/2022/03/30/6-0-product-walk-through/\">WordPress 6.0 walkthrough</a> hosted by contributors of the release squad.</p>\n\n\n\n<p>The event will take place via Zoom and include a discussion on the new features, potential blockers, and a Q&amp;A session with the community. Attendance is open to anyone who wants to know more about what’s coming in WordPress 6.0.</p>\n\n\n\n<div class=\"wp-container-7 wp-block-buttons\">\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link\" href=\"https://make.wordpress.org/core/2022/03/30/6-0-product-walk-through/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Join the WordPress 6.0 product walkthrough</strong></a></div>\n</div>\n\n\n\n<h2>Gutenberg releases: Versions 12.8 and 12.9 are here</h2>\n\n\n\n<p>Versions 12.8 and 12.9 of the Gutenberg plugin were released last month. With them, some new exciting features and updates.</p>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2022/03/16/whats-new-in-gutenberg-12-8-16-march/\">Gutenberg 12.8</a> includes a new Webfonts API, iterative UX enhancements, and bug fixes to increase the editor’s stability.</li><li><a href=\"https://make.wordpress.org/core/2022/03/30/whats-new-in-gutenberg-12-9-30-march/\">Gutenberg 12.9</a> introduces the new block locking UI and support for spacing between Gallery images. Also, many other improvements to give you more control over what is editable and presented to users.</li></ul>\n\n\n\n<div class=\"wp-container-8 wp-block-buttons\">\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link\" href=\"https://make.wordpress.org/core/tag/gutenberg-new/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Follow #gutenberg-new to stay updated on the latest Gutenberg releases</strong></a></div>\n</div>\n\n\n\n<div class=\"wp-container-9 wp-block-buttons\"></div>\n\n\n\n<h2>Team updates: Team Reps for the Photo Directory team, community proposals, and more</h2>\n\n\n\n<ul><li><a href=\"https://wordpress.org/news/2022/03/wordpress-5-9-2-security-maintenance-release/\">WordPress 5.9.2</a> is available for download. This security and maintenance release features one bug fix and three security fixes.</li><li>The Team Representatives for the Make Photo Directory team for 2022 <a href=\"https://make.wordpress.org/photos/2022/03/23/announcement-photo-directory-team-reps-2022/\">have been announced</a>. Congrats to Marcus Burnette (<a href=\'https://profiles.wordpress.org/mdburnette/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>mdburnette</a>), Katie Richards (<a href=\'https://profiles.wordpress.org/katiejrichards/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>katiejrichards</a>), and Topher DeRosia (<a href=\'https://profiles.wordpress.org/topher1kenobe/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>topher1kenobe</a>)!</li><li>The Community team considered <a href=\"https://make.wordpress.org/community/2022/03/17/discussion-revisiting-in-person-regional-wordcamps/\">revisiting the existing guidelines</a> for in-person regional WordCamps. Conclusions and next steps will be shared soon.</li><li>On a similar note, Cate DeRosia (<a href=\'https://profiles.wordpress.org/mysweetcate/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>mysweetcate</a>) is <a href=\"https://make.wordpress.org/community/2022/03/23/return-to-events-blue-sky-thinking/\">looking for ideas</a> on how to support organizers who are trying to restart in-person events in their communities. Share yours by April 13, 2022.</li><li>The Training team published new lesson plans, workshops, and social learning spaces on Learn WordPress. <a href=\"https://make.wordpress.org/updates/2022/04/01/whats-new-on-learnwp-in-march-2022/\">Check out what’s new in March 2022.</a></li><li>How has WordPress helped grow your story? The Make Marketing team <a href=\"https://make.wordpress.org/marketing/2022/04/01/grow-your-story-on-wordpress/\">wants to hear about your experience</a>!</li><li>The <a href=\"https://make.wordpress.org/core/2022/03/07/the-performance-lab-plugin-has-been-released/\">Performance Lab plugin</a>, a set of modules that aim to improve performance in WordPress, was released last month.</li><li>Openverse released <a href=\"https://make.wordpress.org/openverse/2022/03/10/openverse-frontend-v3-1-1-release/\">new updates</a> in March. They include a redesigned content reporting flow and new image detail pages.</li><li>WordPress Executive Director Josepha Haden Chomphosy posted a <a href=\"https://make.wordpress.org/project/2022/03/23/removal-of-the-zamir-plugin/\">public statement</a> on the removal of the Zamir plugin a few weeks ago.</li><li>The March 2022 editions of the <a href=\"https://make.wordpress.org/community/2022/03/14/meetup-organizer-newsletter-march-2022/\">Meetup Organizer Newsletter</a> and the <a href=\"https://make.wordpress.org/polyglots/2022/03/22/polyglots-monthly-newsletter-march-2022/\">Polyglots Monthly Newsletter</a> were published.</li><li>The latest edition of People of WordPress features the contributor story of the Argentinian web developer and product manager <a href=\"https://wordpress.org/news/2022/03/people-of-wordpress-juanfra-aldasoro/\">Juanfra Aldasoro</a>.</li><li>WordPress community members launched the <a href=\"https://block-museum.com/\">Museum of Block Art (MOBA)</a>. This initiative seeks to inspire creativity and push the limits around what can be done with WordPress. All the art curated in this virtual museum is built using the block editor.</li></ul>\n\n\n\n<div class=\"wp-container-10 wp-block-buttons\">\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link\" href=\"https://make.wordpress.org/community/2022/03/30/proposal-steps-to-integrate-wpdiversity-into-wordpress-event-organizing/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Help us build a thriving and inclusive community. Share your thoughts on this </strong><strong>proposal</strong><strong> to introduce WordCamp and Meetup organizers to #WPDiversity programs by April 8, 2022.</strong></a></div>\n</div>\n\n\n\n<h2>Testing requests: WebP feature, template for author pages</h2>\n\n\n\n<ul><li>The Performance Team published a <a href=\"https://make.wordpress.org/core/2022/03/28/enabling-webp-by-default/\">proposal</a> to integrate the WebP image format by default into WordPress core. Your feedback on this feature is appreciated.</li><li><a href=\"https://make.wordpress.org/mobile/2022/04/04/call-for-testing-wordpress-for-ios-19-6/\">Version 19.6</a> of WordPress for iOS is available for testing.</li></ul>\n\n\n\n<div class=\"wp-container-11 wp-block-buttons\">\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link\" href=\"https://make.wordpress.org/test/2022/03/31/fse-program-testing-call-13-authoring-an-author-template/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong> There&#8217;s a new call for testing as part of the Full Site Editing Outreach Program: Authoring an Author Template. The deadline to participate is April 21, 2022.</strong></a></div>\n</div>\n\n\n\n<h2>The first flagship WordCamp Asia is looking for organizers</h2>\n\n\n\n<ul><li>WordCamp Asia is tentatively scheduled for February 2023. After two years since the organizing team announced that the first flagship WordCamp Asia was canceled due to the pandemic, they are back together and <a href=\"https://asia.wordcamp.org/2023/call-for-organisers/\">looking for more members</a> to join them in planning the event.</li><li>The <a href=\"https://us.wordcamp.org/2022/apply-to-speak-at-wcus/\">Call for Speakers</a> for WordCamp US 2022 is now open. You can submit your application by April 17, 2022.</li><li>Three in-person WordCamps are happening this month:<ul><li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1e8-1f1ed.png\" alt=\"??\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://geneve.wordcamp.org/2022/\">WordCamp Genève</a>, Switzerland on April 9, 2022</li><li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ec-1f1f7.png\" alt=\"??\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://athens.wordcamp.org/2022/\">WordCamp Athens</a>, Greece on April 9-10, 2022</li><li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1e6-1f1f9.png\" alt=\"??\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://vienna.wordcamp.org/2022/\">WordCamp Vienna</a>, Austria on April 23-24, 2022</li></ul></li><li>Check out the latest episodes of WordPress Briefing with Josepha Haden:<ul><li><a href=\"https://wordpress.org/news/2022/04/episode-28-coming-to-a-wordcamp-near-you-a-return-to-in-person-wp-events/\">Coming to a WordCamp Near You: A Return to In-Person WP Events</a></li><li><a href=\"https://wordpress.org/news/2022/03/episode-27-is-wordpress-made-for-me/\">Is WordPress Made for Me?</a></li></ul></li></ul>\n\n\n\n<div class=\"wp-container-12 wp-block-buttons\">\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link\" href=\"https://europe.wordcamp.org/2022/call-for-volunteers/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong><strong>The </strong><strong>Call for Volunteers</strong><strong> for WordCamp Europe 2022 is still open. If you want to get involved with the WordPress community and have a lot of fun, this is your chance!</strong></strong></a></div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity\" />\n\n\n\n<p><strong><em>Have a story that we could include in the next ‘Month in WordPress’ post? Let us know by filling out </em></strong><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><strong><em>this form</em></strong></a><strong><em>.</em></strong></p>\n\n\n\n<p><em>The following folks contributed to this Month in WordPress: </em><a href=\'https://profiles.wordpress.org/rmartinezduque/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>rmartinezduque</a>, <a href=\'https://profiles.wordpress.org/mysweetcate/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>mysweetcate</a>, <a href=\'https://profiles.wordpress.org/anjanavasan/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>anjanavasan</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"12583\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:61:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"WP Briefing: Episode 28: Coming to a WordCamp Near You: A Return to In-Person WP Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:108:\"https://wordpress.org/news/2022/04/episode-28-coming-to-a-wordcamp-near-you-a-return-to-in-person-wp-events/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 04 Apr 2022 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=12506\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:172:\"Curious about returning to WordPress events safely? Tune in as WordPress Executive Director Josepha Haden Chomphosy discusses guidelines for returning to in-person events. \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2022/03/WP-Briefing-028.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Santana Inniss\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:11997:\"\n<p>In the twenty-eighth episode of the WordPress Briefing, Executive Director, Josepha Haden Chomphosy discusses returning to in-person WordPress events.</p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 id=\"credits\">Credits</h2>\n\n\n\n<ul><li>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a></li><li>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a></li><li>Production:&nbsp;<a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a> &amp; <a href=\"https://profiles.wordpress.org/santanainniss/\">Santana Inniss</a> </li><li>Song: Fearless First by Kevin MacLeod</li><li>Special thanks to: <a href=\"https://profiles.wordpress.org/angelasjin/\" data-type=\"URL\" data-id=\"https://profiles.wordpress.org/angelasjin/\">Angela Jin</a></li></ul>\n\n\n\n<h2>References</h2>\n\n\n\n<ul><li><a href=\"https://wordcampcentral.survey.fm/2022-host-in-person-wordpress-event-checklist\">Event Safety Checklist</a></li><li><a href=\"https://asia.wordcamp.org/2023/call-for-organisers/\">WordCamp Asia Call for Organizers</a></li><li><a href=\"https://make.wordpress.org/community/2022/03/23/return-to-events-blue-sky-thinking/\">Open Discussion: Returning to In-Person Events</a></li><li><a href=\"https://make.wordpress.org/community/2022/03/17/discussion-revisiting-in-person-regional-wordcamps/\">Open Discussion: Returning to Regional Events</a></li></ul>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-12506\"></span>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:00:00] </strong>&nbsp;</p>\n\n\n\n<p>Hello everyone! And welcome to the WordPress Briefing: the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it and get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy. Here we go.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:00:40]&nbsp;</strong></p>\n\n\n\n<p>I was checking the list of upcoming events recently as part of just my regular work and saw that the call for organizers for WordCamp Asia is open. On the one hand, it made my heart skip a beat with excitement. That event is six years or so in the making. And on the other hand, it reminded me of February 10th, 2020, the day that Matt told me that we had to proactively cancel WordCamp Asia. That week was truly heartbreaking for me as well as I think the entire organizing team.</p>\n\n\n\n<p>But it also, fortunately, was prescient. As I think back over the two years since then, I&#8217;m grateful for our community wranglers and deputies who have consistently hosted important discussions about how to return to in-person events safely. And with two of our major flagship events returning this year, I&#8217;m here to summarize, sort of, what the rules and guidelines are.</p>\n\n\n\n<p>But certainly I hope that you come away from this with an idea of what&#8217;s being done to keep everyone safe as we are best able.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:01:44]&nbsp;</strong></p>\n\n\n\n<p>Firstly, before we dig into specifics, I want to be clear upfront that the guidelines for COVID-aware events are mandatory, unless otherwise stated. For folks who&#8217;ve been attending WordPress events, or participating in the community for a long time, this is a change. As a program, we have always done our best to be flexible with guidelines so that we can prioritize local knowledge. But our responsibility is to the long-term success of this community and this program. So moving forward with in-person events that risk the health of our community members poses risks to the program itself. So with that in mind, let&#8217;s learn what we&#8217;re going to see at events for the rest of the.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:02:28]&nbsp;</strong></p>\n\n\n\n<p>For any WordPress event that is gathering more than 50 people, the new mandatory guidelines are:</p>\n\n\n\n<p>Number one, follow local laws and guidelines. If your area has suggested guidelines on top of the mandatory ones, follow those.</p>\n\n\n\n<p>Second, is if you are in a location where laws or guidelines require or permit venues to limit admission based on a person&#8217;s vaccination status and masking, then events can only happen in venues that are willing to provide staff to check for vaccination status at the door. And then also to remind participants to wear masks during the event.</p>\n\n\n\n<p>And the third thing is if your area or venue legally cannot check vaccination status, your area must pass the in-person checklist, which I will link in the show notes below. But that in-person checklist has to be passed at the time of the application and then again at the time of the event. And in addition to that, the venue must be willing to provide staff who will remind participants to wear masks and check for temperature during the event.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:03:33]&nbsp;</strong></p>\n\n\n\n<p>Organizers in these areas must be prepared to move online or cancel if the region fails the safety checklist, which again, will be linked in the show notes below. So those are the three things and they are pretty dense, but also I think allow for a fair amount of flexibility. There is also a tidy flow chart linked in the sidebar of make.wordpress.org/community that will help you to decide what sort of event your own area can support right now.&nbsp;</p>\n\n\n\n<p>So those are the mandatory guidelines for WordPress events in general right now, but you probably also have a few specific questions. So I&#8217;ve got the three most common questions ready to go with answers from Angela Jin who helped me to kind of pull together the information for this particular podcast props to Angela. Thank you.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:04:25]&nbsp;</strong></p>\n\n\n\n<p>So, first question, anything specific to know about WordCamp Europe? WordCamp Europe will be following these guidelines as well. All attendees and participants are expected to wear a mask while they are at the event and catering will be offered outside so people can remove their masks to eat.&nbsp;</p>\n\n\n\n<p>The second common question is how will these guidelines change as countries and local governments begin deescalating restrictions and safety measures? We should consider these guidelines to be subject to evolution based on what the team is hearing and seeing from the community. But right now we intend to keep these stricter guidelines in place until we see how the loosened rules play out elsewhere.&nbsp;</p>\n\n\n\n<p>And then a third frequent question is what&#8217;s going to happen to all these online events?</p>\n\n\n\n<p>The community team will continue to support online events right now. So if your community doesn&#8217;t feel ready to have an in-person event, but still wants to kind of get everyone together that is still allowed, and still&nbsp; encouraged. And finally the community team will continue to keep a close eye on situations around the world.</p>\n\n\n\n<p>If it becomes safe to do so, and your community is interested, they of course will be happy to chat with you about a WordCamp. There is an application that I will share the link to in the show notes below as well. In case that is something that your community is wanting to look into.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:05:54]</strong></p>\n\n\n\n<p>Oh, and I have a little postscript also. I know I was like finally, and now I&#8217;m doing a finally, finally. That&#8217;s what postscripts are about. P.S. If you have not stopped by the community team’s site or any of their meetings, they&#8217;ve been doing a really great job of keeping things moving through two years of unpredictable changes. If you are a community team member, I want to offer you a huge thanks. Thank you so much for helping us to stay aware and able to move forward.&nbsp;</p>\n\n\n\n<p>If you are an organizer, pat yourself on the back. I want to thank you for pivoting with us, moving through online events, even though they are not at all the same as in-person events and certainly they don&#8217;t share the reasons that we get people together sometimes.</p>\n\n\n\n<p>And finally, if you are an end to end attendee, if you go to WordPress meetups or you go to any sort of WordPress online events or WordCamps, anything like that, thank your local organizer. They have been doing this probably for a while, and I&#8217;m sure that they are looking forward to getting back to in-person events themselves, but even, so they have been putting in a lot of volunteer hours to help make sure that we all know how to use WordPress.</p>\n\n\n\n<p>And so find them, thank them, and I&#8217;m sure that they&#8217;ll appreciate it.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:07:20]</strong></p>\n\n\n\n<p>And with that, it is time for our small list of big things. Number one, WordCamp Asia has a call for organizers open! This event will be in 2023. And I think that we all simply cannot wait. So I&#8217;ll link the call for organizers in the show notes. And then of course you can follow that whole site to stay up to date on what&#8217;s happening there.</p>\n\n\n\n<p>The second thing is, while we&#8217;re on the topic of events, there&#8217;s also an open discussion about how we can best support organizers who are getting back to in-person events. We&#8217;d like thoughts from both organizers and attendees. So feel free to drop by and leave a note in the comments section. And while you&#8217;re over there, the third thing in my small list of big things, there&#8217;s also an open discussion about regional events. So go over there, get all your thoughts about WordPress events together. Get them all sorted out in one go. Just leave comments, boom, boom, boom, boom, boom. All over the place.&nbsp;</p>\n\n\n\n<p>And that my friends is your small list of big things. Thank you for tuning in today for the WordPress Briefing. I&#8217;m your host Josepha Haden Chomphosy.</p>\n\n\n\n<p>And I&#8217;ll see you again in a couple of weeks.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:08:54]</strong></p>\n\n\n\n<p>So my most embarrassing WordCamp story actually has to do with where I was supposed to be versus where people thought I was supposed to be. This was early on in my time with WordPress, with Automattic. And I had convinced someone, I had convinced a colleague and friend of mine to go to my home WordCamp, WordCamp Fayetteville over there in Arkansas.</p>\n\n\n\n<p>And then I didn&#8217;t go. But I knew I wasn&#8217;t going, I knew I was going to WordCamp Boston, but he did not know that I was not going to go. And so he arrived at WordCamp Fayetteville, WordCamp Northwest Arkansas. I can&#8217;t remember what it was called at the time. And immediately was confused about where I was and why I wasn&#8217;t there.</p>\n\n\n\n<p>And so there was this excellent moment of mass confusion among states where the folks at WordCamp Fayetteville started tweeting about how I had convinced this contributor to go to that event and then didn&#8217;t show up. And then the folks at WordCamp Boston, we&#8217;re looking at all of those tweets, because if you are a WordCamp organizer, you are always looking at the tweets from all the other WordCamps happening in your weekend.</p>\n\n\n\n<p>And people got very confused about why I was in Boston while they were thinking that I was in Fayetteville, even though the tweets were talking about how, like, I wasn&#8217;t in Fayetteville. They probably didn&#8217;t say that it was probably more along the lines of like, “Hey, let&#8217;s share a photo with Josepha” to, like, make fun of the fact that I wasn&#8217;t there.</p>\n\n\n\n<p>And so I caused mass confusion in multiple states. That&#8217;s probably my most embarrassing WordCamp story. You&#8217;re welcome. Bye!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"12506\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:75:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"People of WordPress: Juan Aldasoro\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wordpress.org/news/2022/03/people-of-wordpress-juanfra-aldasoro/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 31 Mar 2022 21:42:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:7:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Features\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:10:\"Interviews\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:9:\"HeroPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:19:\"People of WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:20:\"Polyglot Contributor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:6;a:5:{s:4:\"data\";s:12:\"Support Team\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=12512\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:120:\"The People of WordPress feature this month shares the story of web and plugin developer Juanfra Aldasoro from Argentina.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"webcommsat AbhaNonStopNewsUK\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:19968:\"\n<p><strong>In this series, we share some of the inspiring stories of how WordPress and its global network of contributors can change people’s lives for the better. This month we feature a website developer and product manager from Argentina, who found in the software a way to live his life in the way he dreamed.</strong></p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"1024\" height=\"768\" src=\"https://i2.wp.com/wordpress.org/news/files/2022/03/Juanfra_2333.jpg?resize=1024%2C768&#038;ssl=1\" alt=\"Juan standing in front of a mural\" class=\"wp-image-12525\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2022/03/Juanfra_2333-scaled.jpg?resize=1024%2C768&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2022/03/Juanfra_2333-scaled.jpg?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2022/03/Juanfra_2333-scaled.jpg?resize=768%2C576&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2022/03/Juanfra_2333-scaled.jpg?resize=1536%2C1152&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2022/03/Juanfra_2333-scaled.jpg?resize=2048%2C1536&amp;ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>WordPress offers something to everyone. For Juan Aldasoro, a developer and product manager for a large distributed company, it provides an opportunity to combine his different interests and skills to live the type of life he wanted.&nbsp;</p>\n\n\n\n<p>“I like visual, creative and technical things. The joy of WordPress is that you can do all of these things, you don’t have to limit yourself to any one aspect . You can also do this from almost anywhere in the world!”</p>\n\n\n\n<p>From working in products since 2012, Juan sees WordPress as a major part of his skillset and toolbox. He said: “It gives you an opportunity to be part of building a product which could potentially be used by thousands of people and more on your site. It encourages you to think about different languages and how you can make it accessible. It allows you to work on different platforms. Working in WordPress gives you this broad approach. Working this way on products ended up pushing me into learning about all these different things. Only in open source can you really do this and use your creative side to find solutions.”</p>\n\n\n\n<h2><strong>Learning about being part of a community</strong></h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"1024\" height=\"924\" src=\"https://i0.wp.com/wordpress.org/news/files/2022/03/Juanfra_2813.jpeg?resize=1024%2C924&#038;ssl=1\" alt=\"Juan standing in a astreet with murals behind him\" class=\"wp-image-12529\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2022/03/Juanfra_2813-scaled.jpeg?resize=1024%2C924&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2022/03/Juanfra_2813-scaled.jpeg?resize=300%2C271&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2022/03/Juanfra_2813-scaled.jpeg?resize=768%2C693&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2022/03/Juanfra_2813-scaled.jpeg?resize=1536%2C1386&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2022/03/Juanfra_2813-scaled.jpeg?resize=2048%2C1847&amp;ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Born in a mid-sized city in Argentina, Juan was raised in a family in which music, arts and sports were always an essential part of everyday life.</p>\n\n\n\n<p>“These activities encourage human beings to be creative and participative, and at the same time they are highly formative when it comes to mould people in order to become part of a group, a team, a community.”</p>\n\n\n\n<p>The youngest of five siblings, Juan became highly motivated, trying to follow the steps of his siblings. Having a computer at home, he started to make connections that laid the foundation for his career as a developer. His interest in computers grew through that access to a machine running MS-DOS &#8211; the one with the black screen command line! Mastering this became a challenge to him and something to share with others. Through doing this, he found a way to more social interaction and new friendships.&nbsp;</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Without being conscious of it, my friends and I were sharing pieces of code.</p></blockquote>\n\n\n\n<p>He said: “I started learning some super easy stuff that made me feel like Houdini at that time. I could save a game play, something intangible, on a floppy disk and carry that piece of plastic and magnetic material back home. I was saving the play or game in a square object and then loading that back at home. I now realize, those were my first interactions with computer commands. Without being conscious of it, my friends and I were sharing pieces of code in a unique way.”</p>\n\n\n\n<p>This interest grew further through computer magazines and experimenting as &#8220;there was always something new to learn.” Although sport became a big part of Juan’s life in his teens, he kept up his computer learning. Taking a new direction, he found online tutorials enabling him to learn how to play the guitar. This led to setting up a punk rock band with his friends.&nbsp;</p>\n\n\n\n<p>“Education has always been important in my family, and thanks to my parent’s efforts, I attended a school where I learned to express myself in another language.” The school had hired a satellite internet connection in the mid-nineties and had HTML on the computer studies program. These facilities were not that common in Argentina or many other countries either at that time. Also, his parents had the foresight to secure a rare internet connection at the house in 1997. </p>\n\n\n\n<p>Juan recalled: “Browsing around the Internet opened a new universe in my mind. This new universe was extremely fantastic but also extremely expensive. I needed to make the most of every second online.”<br><br>“It was a whole new world and one thing led to the other. I started learning a bit of everything, editing graphics, scripting and so on. I still remember my first website in the fantastic sunset strip, Geocities.”</p>\n\n\n\n<h3><strong>Trying to go pro</strong></h3>\n\n\n\n<p>After high school, Juan moved to the city along with his brother and began to study IT at University. When he was asked by a friend to work at a software company, he decided to try that whilst continuing his studies. Through his job he had the chance to explore web-related opportunities, and with a friend from university, they started managing teams and projects across Latin America and Spain.<br><br>Juan describes this experience as one of the most fulfilling in his life. He was able to travel abroad for work, experience remote working, manage teams, present projects and speak formally in front of senior people. As the company grew at a fast pace, they learned how to set up and run a large organization. Eventually, he decided to drop out of his university program and focus on the opportunity of learning first hand.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" width=\"600\" height=\"600\" src=\"https://i0.wp.com/wordpress.org/news/files/2022/03/juanfra.jpg?resize=600%2C600&#038;ssl=1\" alt=\"Juan riding a bicycle in a historical city during his travels\" class=\"wp-image-12509\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2022/03/juanfra.jpg?w=600&amp;ssl=1 600w, https://i0.wp.com/wordpress.org/news/files/2022/03/juanfra.jpg?resize=300%2C300&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2022/03/juanfra.jpg?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>One of the key early learning from working internationally was that business and web development could be just as fast-moving and successful in Argentina as in other places. “I realized there’s no such thing as a secret sauce for success. Projects are backed by people’s talent and time, and you can find that in any latitude.”<br><br>By his mid-20s, Juan decided he wanted to try building something from scratch. He created a social network for photo sharing in Latin America, which was used by more than 30,000 people across Latin America and Spain in its time. Through this, he discovered that other people had a blog and he did not want to be left behind. The discovery of WordPress was to change the focus of his life.<br></p>\n\n\n\n<h2>Hello to WordPress</h2>\n\n\n\n<p>Spending some time traveling around Europe, Juan found himself ‘surrounded by uncertainty’ and worried about what the future could bring. “I had some clues, but under uncertainty, the more you ask the less you answer. I started thinking about embracing the following philosophy: I didn’t want to be part of a large company, I didn’t want to continue studying and I wanted to travel as much as I could.” He did not realize at that time how this vision for his life was to mirror what he would find in WordPress.</p>\n\n\n\n<p>He started using WordPress for a few sites in 2005. By 2007 he was using it for almost everything. He was struck by the magnitude and range of what the software could do, from a simple tool used to create a blog in the blink of an eye through to complex projects.</p>\n\n\n\n<p>His first problem-solving project was simple and saved data received through a contact form plugin. “To complete this project I discovered the Codex and I learned how easy and intuitive it is to create a plugin. I had fallen in love with WordPress.”</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>I was truly amazed by how I could learn from others.</p></blockquote>\n\n\n\n<p>As he explored the options with the software, Juan was unsure of how intellectual property worked and wanted to be respectful of other people’s work. “I didn’t understand open source yet, and I wasn’t sure if I was stealing from others. That was my first interaction with GPL and open source. I was truly amazed by how I could learn from others and improve things created by others or by myself.”</p>\n\n\n\n<p>He realized: “WordPress was the way to go if I wanted to pursue a dream of traveling, skipping winter, and working at the same time; what we now call a digital nomad. I already knew how to work remotely, I could work for companies located anywhere, as long as they could communicate in English or Spanish.”</p>\n\n\n\n<p>Juan started his own web agency, where he provided services to small and medium-sized companies abroad in the USA, UK, and Australia. He built his reputation and developed strong relationships in WordPress. “The experience couldn’t be better. I was learning, having fun, making a living out of it, and at the same time exploring the world.”</p>\n\n\n\n<p>In mid-2012, he discovered the full power of the WordPress community firsthand. In his spare time he started developing themes and from all he heard, wanted to attend a major event with lots of others in WordPress, a WordCamp. He took the plunge and booked for WordCamp in Edinburgh, in the UK. He said: “I got to meet many super talented people, and the atmosphere of the event was awesome. A place where competitors were also colleagues. Seeing the humility of somebody like Mike Little, the co-founder of WordPress, was amazing.”</p>\n\n\n\n<p>He added: “While there, unconsciously, I started dreaming of holding something like that in Argentina &#8211; the joy of hosting the WordPress community in my home country.”</p>\n\n\n\n<p>Back home, while browsing the Codex, he happened to see that WordPress was turning 10. A lot of meetups were going to be organized worldwide to celebrate the birthday. But there was nothing organized in Argentina. This was a catalyst for starting a local meetup. Together with a colleague, he&nbsp; organized an Argentinian 10th birthday meetup. </p>\n\n\n\n<p>More than 20 people showed up. “There was a common denominator. We all loved WordPress, it was part of our day-to-day life. We wanted to share experiences, make new friends and continue growing from what we could learn from others. That day we were a group of people with shared interests. That’s the simplest way to define a community, isn’t it?” This early meetup led to the formation of what is now called <a href=\"http://wpargentina.org/\">WordPress Argentina</a>.</p>\n\n\n\n<p>In his desire to skip winters and do more traveling, his next adventure was to take him to visit family working in the US and attend one of the biggest WordCamps in the world in San Francisco. His interest kept growing and he traveled across Europe to be part of the first edition of WordCamp Europe in the Netherlands in 2013.</p>\n\n\n\n<p>He said: “There’s almost nothing I could write to fully express what you experience in such events. They are the main WordPress events worldwide. The best part: I made a lot of good friends from many different places. I’m glad I have more excuses to continue traveling.”</p>\n\n\n\n<p>Once again in Argentina, our organization started growing thanks to the energy of the whole group, we started hosting formal meetups. In May 2015, we crowned all these efforts with a new <a href=\"https://buenosaires.wordcamp.org/2015/\">WordCamp in Buenos Aires</a>, Argentina.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"1024\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2022/03/Juanfra-WCBA15-51.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"Juan speaking at WordCamp Buenos Aires\" class=\"wp-image-12528\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2022/03/Juanfra-WCBA15-51-scaled.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2022/03/Juanfra-WCBA15-51-scaled.jpg?resize=300%2C200&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2022/03/Juanfra-WCBA15-51-scaled.jpg?resize=768%2C512&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2022/03/Juanfra-WCBA15-51-scaled.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i1.wp.com/wordpress.org/news/files/2022/03/Juanfra-WCBA15-51-scaled.jpg?resize=2048%2C1365&amp;ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>“Organizing such an event in my home country with many of the contributors I had met from the very first meetup was an experience I will always keep with me.”</p>\n\n\n\n<p>Juan believes one of his biggest contributions to open source was as part of being able to expand the community in Argentina and to share this with other Latin American and Spanish speaking countries. He also contributes as a volunteer translator in the Polyglots Team, to the Make WordPress Support team, and contributes to code blocks and Gutenberg. “I am really excited about seeing the future of Gutenberg as it is the future of WordPress.”</p>\n\n\n\n<p>Throughout his time contributing, Juan believes in helping to set the foundations and encouraging others to give their time and talents. He is keen to share that contributing does not have to be the same all the time and that you can have breaks and focus on one area in a particular period too. He gives the example of how in his spare time he watches Trac, where tickets about the software are logged, and looks where he might be able to help or think of solutions.</p>\n\n\n\n<p>He said: “Anytime I find I can contribute to or make improvements in code-related areas, I will do as it is important to keep giving to the community. I enjoy crawling over meta, trac, GitHub and the different places that are requesting help. There is always somewhere you can help. At the moment, my focus is code and translations. I always try to save time to help these two areas. It is like you give and you get, you learn things. You meet amazing people and opportunities arrive.”</p>\n\n\n\n<h2>Finding your path in WordPress</h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"768\" height=\"1024\" src=\"https://i1.wp.com/wordpress.org/news/files/2022/03/Juanfra_1505.jpeg?resize=768%2C1024&#038;ssl=1\" alt=\"Juan sat in a street cafe surrounded by parked motorcycles\" class=\"wp-image-12527\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2022/03/Juanfra_1505-scaled.jpeg?resize=768%2C1024&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2022/03/Juanfra_1505-scaled.jpeg?resize=225%2C300&amp;ssl=1 225w, https://i2.wp.com/wordpress.org/news/files/2022/03/Juanfra_1505-scaled.jpeg?resize=1152%2C1536&amp;ssl=1 1152w, https://i2.wp.com/wordpress.org/news/files/2022/03/Juanfra_1505-scaled.jpeg?resize=1536%2C2048&amp;ssl=1 1536w, https://i2.wp.com/wordpress.org/news/files/2022/03/Juanfra_1505-scaled.jpeg?w=1920&amp;ssl=1 1920w\" sizes=\"(max-width: 768px) 100vw, 768px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>“Life is about experiences, it is about the people you surround yourself with and trying to do what you love. What you can find in an open source project like WordPress is an environment full of people who work with a tool they love. An environment that is ready to help and to give advice. Follow what makes you happy, try to be surrounded by people who make you better, try to empower others, try to give back. Try. Make your own path.”</p>\n\n\n\n<h2 id=\"share-the-stories\">Share the stories</h2>\n\n\n\n<p>Help share these stories of open source contributors and continue to grow the community. Meet more WordPressers in the <a href=\"https://wordpress.org/news/category/newsletter/interviews/\">People of WordPress series</a>.</p>\n\n\n\n<h2 id=\"contributors-to-this-feature\">Contributors to this feature</h2>\n\n\n\n<p>Thank you to Juan Aldasoro (<a href=\'https://profiles.wordpress.org/juanfra/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>juanfra</a>) for sharing his story.&nbsp;</p>\n\n\n\n<p>Interviews and feature by Abha Thakor (<a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a>) and Surendra Thakor (<a href=\'https://profiles.wordpress.org/sthakor/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>sthakor</a>). Reviews by Mary Baum (<a href=\'https://profiles.wordpress.org/marybaum/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>marybaum</a>), Chloe Bringmann (<a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a>), Meher Bala (<a href=\'https://profiles.wordpress.org/meher/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>meher</a>), Anjana Vasan (<a href=\'https://profiles.wordpress.org/anjanavasan/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>anjanavasan</a>) and Yvette Sonneveld (<a href=\'https://profiles.wordpress.org/yvettesonneveld/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>yvettesonneveld</a>).</p>\n\n\n\n<p><em>Thanks to Josepha Haden Chomphosy&nbsp;(<a href=\'https://profiles.wordpress.org/chanthaboune/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chanthaboune</a>) and Topher DeRosia (<a href=\'https://profiles.wordpress.org/topher1kenobe/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>topher1kenobe</a>) and others for their support&nbsp;</em>of this initiative.</p>\n\n\n\n<div class=\"wp-block-media-text is-stacked-on-mobile is-vertically-aligned-center\" style=\"grid-template-columns:29% auto\"><figure class=\"wp-block-media-text__media\"><img loading=\"lazy\" width=\"180\" height=\"135\" src=\"https://i1.wp.com/wordpress.org/news/files/2020/03/heropress_logo_180.png?resize=180%2C135&#038;ssl=1\" alt=\"HeroPress logo\" class=\"wp-image-8409 size-full\" data-recalc-dims=\"1\" /></figure><div class=\"wp-block-media-text__content\">\n<p class=\"has-small-font-size\"><em>This People of WordPress feature is inspired by an essay originally published on </em><a href=\"https://heropress.com/\"><em>HeroPress.com</em></a><em>, a community initiative created by Topher DeRosia. It highlights people in the WordPress community who have overcome barriers and whose stories might otherwise go unheard. </em>#HeroPress </p>\n</div></div>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"12512\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:57:\"\n		\n		\n		\n		\n		\n				\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"Get Creative with the All-New Pattern Creator\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"https://wordpress.org/news/2022/03/get-creative-with-the-all-new-pattern-creator/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 25 Mar 2022 17:34:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=12460\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:351:\"It’s been less than a year since the WordPress Pattern Directory was launched, and we already have more exciting news to share. The Pattern Creator is live! You can now build, edit, and submit your best block patterns to the Pattern Directory—submissions are open to all with a WordPress.org user account! The WordPress Pattern Directory [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Anjana Vasan\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:5700:\"\n<p>It’s been less than a year since the <a rel=\"noreferrer noopener\" href=\"https://wordpress.org/patterns/\" target=\"_blank\">WordPress Pattern Directory</a> was launched, and we already have more exciting news to share. <strong>The <a rel=\"noreferrer noopener\" href=\"https://wordpress.org/patterns/new-pattern/\" target=\"_blank\">Pattern Creator</a> is live! You can now build, edit, and submit your best block patterns to the Pattern Directory—submissions are open to all with a WordPress.org user account!</strong></p>\n\n\n\n<figure class=\"wp-container-14 wp-block-gallery-13 wp-block-gallery alignfull has-nested-images columns-default\">\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" width=\"2800\" height=\"3000\" data-id=\"12485\"  src=\"https://i0.wp.com/wordpress.org/news/files/2022/03/patterns.png?resize=2800%2C3000&#038;ssl=1\" alt=\"Pattern Directory, showing gallery patterns.\" class=\"wp-image-12485\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2022/03/patterns.png?w=2800&amp;ssl=1 2800w, https://i0.wp.com/wordpress.org/news/files/2022/03/patterns.png?resize=280%2C300&amp;ssl=1 280w, https://i0.wp.com/wordpress.org/news/files/2022/03/patterns.png?resize=956%2C1024&amp;ssl=1 956w, https://i0.wp.com/wordpress.org/news/files/2022/03/patterns.png?resize=768%2C823&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2022/03/patterns.png?resize=1434%2C1536&amp;ssl=1 1434w, https://i0.wp.com/wordpress.org/news/files/2022/03/patterns.png?resize=1911%2C2048&amp;ssl=1 1911w, https://i0.wp.com/wordpress.org/news/files/2022/03/patterns.png?w=2000&amp;ssl=1 2000w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" width=\"2800\" height=\"2841\" data-id=\"12468\"  src=\"https://i0.wp.com/wordpress.org/news/files/2022/03/community-pattern-3-1-1.png?resize=2800%2C2841&#038;ssl=1\" alt=\"View of a user-submitted pattern.\" class=\"wp-image-12468\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2022/03/community-pattern-3-1-1.png?w=2800&amp;ssl=1 2800w, https://i0.wp.com/wordpress.org/news/files/2022/03/community-pattern-3-1-1.png?resize=296%2C300&amp;ssl=1 296w, https://i0.wp.com/wordpress.org/news/files/2022/03/community-pattern-3-1-1.png?resize=1009%2C1024&amp;ssl=1 1009w, https://i0.wp.com/wordpress.org/news/files/2022/03/community-pattern-3-1-1.png?resize=768%2C779&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2022/03/community-pattern-3-1-1.png?resize=1514%2C1536&amp;ssl=1 1514w, https://i0.wp.com/wordpress.org/news/files/2022/03/community-pattern-3-1-1.png?resize=2018%2C2048&amp;ssl=1 2018w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n<figcaption class=\"blocks-gallery-caption\">Pattern Directory — List of patterns, and a single pattern detail.</figcaption></figure>\n\n\n\n<p>The <a rel=\"noreferrer noopener\" href=\"https://wordpress.org/support/article/block-pattern-directory/\" target=\"_blank\">WordPress Pattern Directory</a> includes attractive, handy patterns created by designers that can make your experience building a stunning site <em>much</em> easier. <a href=\"https://wordpress.org/support/article/block-pattern/\" target=\"_blank\" rel=\"noreferrer noopener\">Patterns</a> can save you a significant amount of time and also give you greater freedom when you’re building your site. With patterns, you can make or replicate complex layouts with just a few clicks, and using them is as simple as copy and paste.</p>\n\n\n\n<h2>Create Your Own Bold, Beautiful Patterns Built Entirely with Blocks</h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://i1.wp.com/wordpress.org/news/files/2022/03/submission-2.png?ssl=1\"><img loading=\"lazy\" width=\"1024\" height=\"683\" src=\"https://i1.wp.com/wordpress.org/news/files/2022/03/submission-2.png?resize=1024%2C683&#038;ssl=1\" alt=\"Pattern submission screen, successfully submitted pattern with a &quot;Thank you&quot; modal.\" class=\"wp-image-12479\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2022/03/submission-2.png?resize=1024%2C683&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2022/03/submission-2.png?resize=300%2C200&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2022/03/submission-2.png?resize=768%2C512&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2022/03/submission-2.png?resize=1536%2C1024&amp;ssl=1 1536w, https://i1.wp.com/wordpress.org/news/files/2022/03/submission-2.png?resize=2048%2C1365&amp;ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></a></figure>\n\n\n\n<p>As the name implies, the <a rel=\"noreferrer noopener\" href=\"https://wordpress.org/patterns/new-pattern/\" target=\"_blank\">Pattern Creator</a> allows anyone, from designers to content creators, to make custom patterns: a collection of blocks arranged in any way, for any purpose intended by the creator. Like most things in WordPress, these are available for public use once it’s submitted to the WordPress Pattern Directory. Have a look at <a rel=\"noreferrer noopener\" href=\"https://wordpress.org/patterns/about/\" target=\"_blank\">these guidelines</a> to learn more about what makes a pattern suitable for listing in the directory.</p>\n\n\n\n<p>So what are you waiting for? Check out <a href=\"https://wordpress.org/patterns/\" target=\"_blank\" rel=\"noreferrer noopener\">all the patterns</a> already available or better yet, make your own!</p>\n\n\n\n<div class=\"wp-container-15 wp-block-buttons\">\n<div class=\"wp-block-button aligncenter is-style-fill\"><a class=\"wp-block-button__link\" href=\"https://wordpress.org/patterns/about/\" style=\"border-radius:75px\"><strong>Learn more about creating patterns</strong></a></div>\n</div>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"12460\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:61:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"WP Briefing: Episode 27: Is WordPress Made for Me?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2022/03/episode-27-is-wordpress-made-for-me/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 21 Mar 2022 12:57:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=12451\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:416:\"Who is WordPress actually made for? Join our host, WordPress Executive Director Josepha Haden Chomphosy, as she explores this controversial question and three things that can help find the answer. Have a question you&#8217;d like answered? You can submit them to wpbriefing@wordpress.org, either written or as a voice recording. Hosts: Josepha Haden Chomphosy Editor:&#160;Dustin HartzlerLogo:&#160;Beatriz [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2022/03/WP-Briefing-027.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Santana Inniss\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:9785:\"\n<p>Who is WordPress actually made for? Join our host, WordPress Executive Director Josepha Haden Chomphosy, as she explores this controversial question and three things that can help find the answer.</p>\n\n\n\n<p><strong><em>H</em></strong><em><strong>ave a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em> </p>\n\n\n\n<p>Hosts: <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a> <br>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a><br>Production:&nbsp;<a href=\"https://profiles.wordpress.org/santanainniss/\">Santana Inniss</a></p>\n\n\n\n<h2>References</h2>\n\n\n\n<ul><li><a href=\"https://europe.wordcamp.org/2022/call-for-volunteers/\">WordCamp Europe call for volunteers</a></li><li><a href=\"https://make.wordpress.org/photos/\">WordPress Photo Directory team</a></li><li><a href=\"https://www.unicefusa.org/stories/unicef-children-crossfire-ukraine-crisis/39542?utm_campaign=20220225_Emergencies&amp;utm_medium=Organic&amp;utm_source=UkraineWebStoryChildrenFeb2022&amp;utm_content=LearnMoreUkraineWebStoryChildrenFeb2022&amp;ms=Organic_PRL_2022_Emergencies_20220225_UkraineWebStoryChildrenFeb2022_LearnMoreUkraineWebStoryChildrenFeb2022_none_none&amp;initialms=Organic_PRL_2022_Emergencies_20220225_UkraineWebStoryChildrenFeb2022_LearnMoreUkraineWebStoryChildrenFeb2022_none_none\">UNICEF</a></li><li><a href=\"https://www.doctorswithoutborders.org/what-we-do/countries/ukraine\">Médecins Sans Frontieres</a>&nbsp;</li><li><a href=\"https://www.icrc.org/en/where-we-work/europe-central-asia/ukraine\">International Committee of the Red Cross</a>&nbsp;</li><li><a href=\"https://help.rescue.org/donate/ukraine-acq?ms=gs_ppc_fy22_ukraine_mmus_feb&amp;initialms=gs_ppc_fy22_ukraine_mmus_feb&amp;gclid=CjwKCAiAjoeRBhAJEiwAYY3nDHNlEUUNRM4wKl1bY0ploy1RNl0M7G1OlLTqawZdg_XhrJ0TircZ_RoCfh8QAvD_BwE\">International Rescue Committee</a></li><li><a href=\"https://www.unrefugees.org/what-we-do/\">UN Refugee Agency</a>&nbsp;</li><li><a href=\"https://donate.wck.org/give/236738/#!/donation/checkout\">World Central Kitchen</a></li><li><a href=\"https://www.techtotherescue.org/tech/tech-for-ukraine\">Tech For Ukraine</a></li><li><a href=\"https://twitter.com/hashtag/wp4ukraine\">#WP4Ukraine</a></li></ul>\n\n\n\n<h2>Transcript </h2>\n\n\n<a class=\"wp-block-read-more\" href=\"https://wordpress.org/news/2022/03/episode-27-is-wordpress-made-for-me/\" target=\"_self\">Read more</a>\n\n\n<p><strong>Episode 27</strong></p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:00:00]&nbsp;</strong></p>\n\n\n\n<p>Hello everyone, and welcome to the WordPress Briefing: the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy. Here we go!</p>\n\n\n\n<p>Today, we&#8217;re talking about who WordPress is built for. I was talking to a group of contributors last week and we encountered some questions around just who WordPress is built for. And it&#8217;s a question that you&#8217;ll find any time that you&#8217;re working on user testing or on triaging tickets, and especially when that comes up when you look at the big picture, roadmap sorts of things. The easiest answer for this question is, of course, everyone because WordPress&#8217; mission is to democratize publishing and that should be available to everyone.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy </strong><strong>[00:01:11]</strong></p>\n\n\n\n<p>However, everyone is a really big target and certainly doesn&#8217;t help get your mind around the people that you&#8217;re wanting to actually build it for, the people that you actually want to be able to use your product, your software on a day-to-day basis. So let&#8217;s take a look at the one question that can help us figure out who it&#8217;s built for today and how we get it to being something that&#8217;s built forever.</p>\n\n\n\n<p>Firstly, there&#8217;s a basic premise of open source that informs this thought. And that premise is that we are citizens of a community of contributors therefore the decisions are made by the people who show up. In general, I believe that to be true, though, I also believe that some basic qualifications are needed.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:01:50]&nbsp;</strong></p>\n\n\n\n<p>So with that in mind, the one question that can help us figure out who a software is built for is this: how do your active contributors see themselves? I would bet that most contributors to open source software projects, like WordPress, are developers of some sort, it is sort of written right into the definition of the project.&nbsp;</p>\n\n\n\n<p>If you work on software, then you need developers. And what I love about WordPress, in particular, is that we do work to include contributors who are not developers. Yet it still remains true that there is a fairly high level of technical knowledge required to actively contribute.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:2:25]&nbsp;</strong></p>\n\n\n\n<p>Which kind of brings us to the second half of the original question of how can we make sure that WordPress can be something that&#8217;s built for everyone? The answer to this one is easy to say, hard to do, and that is to make sure to include them as co-creators in the development process.&nbsp;</p>\n\n\n\n<p>We&#8217;ve talked about co-creators in open source before. It&#8217;s this idea that people who use the software every day are likely to know the biggest pain points. So if you want your software to be used by people who don&#8217;t know HTML, talk to a bunch of people who don&#8217;t know HTML about how it is to use your software.&nbsp;</p>\n\n\n\n<p>If you want your software to be mostly used by enterprise agencies, talk to enterprise agencies, but also ask them what their clients hate, because everyone has more than one stakeholder. And I know that I said this already, but it bears repeating that, obviously, this is all very easy to say and hard to do.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:3:20]&nbsp;</strong></p>\n\n\n\n<p>So what is my best guess for the how-to-do part for WordPress? There are three things.&nbsp;</p>\n\n\n\n<p>The first is testing. This not only helps bring in new contributors and helps train future contributors, which I&#8217;ve talked about on the podcast before. But testing also gives us a higher chance of actionable feedback from folks who don&#8217;t necessarily spend time directly in the WordPress project.&nbsp;</p>\n\n\n\n<p>Frequently the feedback that we do get that is just kind of undirected and ad hoc is exactly that– it is undirected and ad hoc and is then hard to follow up on and make sure that we understand what was wrong and how we can help fix it. And so testing is important for that. And testing it turns out is important for a bunch of things. When you&#8217;re working in open source.&nbsp;</p>\n\n\n\n<p>The next thing is support. So checking in with support teams at hosts, as well as the hardworking support teams in the project. And that can really help us to get early indications of what difficulties exist now. They have routinely seen problems and issues that are raised in support forums, and from their everyday users that they are providing support to.&nbsp;</p>\n\n\n\n<p>That probably could be fixed in WordPress if we had a good understanding of just what was not going right, how many people really needed it to go better, and what our targets were to fix that particular problem.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:4:45]&nbsp;</strong></p>\n\n\n\n<p>And the third thing is communication. I know that I&#8217;ve gone on record in many places as saying that most of our problems at the end of the day are communication problems. And I&#8217;m going on record about it again here in this podcast, establishing better communication patterns with users is key.&nbsp;</p>\n\n\n\n<p>That can be a multi-year project in itself. And even after that, it&#8217;s going to be an ongoing journey. But it is one of the many things that WordCamps and other WordPress events have given to us over the years, an opportunity to really hear from and see the struggles that people who are not building with WordPress every day, or literally building WordPress every day are actually having.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:5:34]&nbsp;</strong></p>\n\n\n\n<p>So now that you&#8217;ve heard my small list of way too big things, that brings us to our regular small list of big things. The first thing is that WordCamp Europe is still looking for volunteers. If you&#8217;ve never done that before, I think it&#8217;s quite fun. You get to meet a lot of people and the team of organizers is super fun, but I&#8217;ll leave a link for you in the show notes.</p>\n\n\n\n<p>We also have a new code-free way to contribute through the photo directory. That team is just getting started and still is working toward building out its programs. So now&#8217;s a good time to drop in and just kind of see what they are up to. And finally, a reminder that we do have contributors who are affected by the war in Ukraine right now. I will reshare the list of humanitarian organizations in case you missed them a couple of weeks ago as well.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:6:21]&nbsp;</strong></p>\n\n\n\n<p>And that my friends is your small list of big things. Thank you for tuning in today for this WordPress Briefing. I&#8217;m your host, Josepha Haden Chomphosy. I&#8217;ll see you again in a couple of weeks.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"12451\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:63:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 5.9.2 Security and Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://wordpress.org/news/2022/03/wordpress-5-9-2-security-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 11 Mar 2022 02:24:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"5.9\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=12421\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:367:\"WordPress 5.9.2&#160;is now available! This security and maintenance release features 1 bug fix in addition to 3 security fixes. Because this is a security release, it is recommended that you update your sites immediately. All versions since WordPress 3.7 have also been updated. WordPress 5.9.2 is a security and maintenance release. The next major release [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Jb Audras\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3697:\"\n<p><strong>WordPress 5.9.2&nbsp;</strong>is now available!</p>\n\n\n\n<p>This security and maintenance release features <a href=\"https://core.trac.wordpress.org/ticket/54578\">1 bug fix</a> in addition to 3 security fixes. Because this is a <strong>security release</strong>, it is recommended that you update your sites immediately. All versions since WordPress 3.7 have also been updated.</p>\n\n\n\n<p>WordPress 5.9.2 is a security and maintenance release. The next major release will be version&nbsp;<a href=\"https://make.wordpress.org/core/6-0/\">6.0</a>.</p>\n\n\n\n<p>You can&nbsp;<a href=\"https://wordpress.org/wordpress-5.9.2.zip\">download WordPress 5.9.2 from WordPress.org</a>, or visit your Dashboard&nbsp;→ Updates and click “Update Now”.</p>\n\n\n\n<p>If you have sites that support automatic background updates, they’ve already started the update process.</p>\n\n\n\n<p>The security team would like to thank the following people for responsively reporting vulnerabilities, allowing them to be fixed in this release:</p>\n\n\n\n<ul><li>Melar Dev, for finding a Prototype Pollution Vulnerability in a jQuery dependency</li><li>Ben Bidner&nbsp;of the WordPress security team, for finding a Stored Cross Site Scripting Vulnerability</li><li>Researchers from <em>Johns Hopkins University, </em>for finding a Prototype Pollution Vulnerability in the block editor</li></ul>\n\n\n\n<p>For more information, browse the&nbsp;<a href=\"https://core.trac.wordpress.org/query?milestone=5.9.2&amp;group=component&amp;col=id&amp;col=summary&amp;col=owner&amp;col=type&amp;col=status&amp;col=priority&amp;col=milestone&amp;order=priority\">full list of changes</a>&nbsp;on Trac, or check out the&nbsp;<a href=\"https://wordpress.org/support/wordpress-version/version-5-9-2/\">version 5.9.2 HelpHub documentation page</a>.</p>\n\n\n\n<h2 id=\"thanks-and-props\">Thanks and props!</h2>\n\n\n\n<p>The 5.9.2 release was led by <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, with the help of <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a> on package updates, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a> on mission control, and <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a> on backport commits.</p>\n\n\n\n<p>In addition to the release squad members and security researchers mentioned above, thank you to everyone who helped make WordPress 5.9.2 happen:</p>\n\n\n\n<p class=\"is-style-wporg-props-short alignfull\"><a href=\"https://profiles.wordpress.org/alanjacobmathew/\">Alan Jacob Mathew</a>, <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/oandregal/\">André</a>, <a href=\"https://profiles.wordpress.org/antonvlasenko/\">Anton Vlasenko</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/ehtis/\">ehtis</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Jorge Costa</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/hellofromTonya/\">Tonya Mork</a>, and <a href=\"https://profiles.wordpress.org/ironprogrammer/\">ironprogrammer</a>.</p>\n\n\n\n<p class=\"has-text-align-right has-small-font-size\"><em>Props <a href=\'https://profiles.wordpress.org/davidbaumwald/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>davidbaumwald</a> and <a href=\'https://profiles.wordpress.org/sergeybiryukov/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>sergeybiryukov</a> for peer review.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"12421\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:61:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"WP Briefing: Episode 26: Matt Mullenweg on Ukraine, Community, and WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://wordpress.org/news/2022/03/episode-26-matt-mullenweg-on-ukraine-community-and-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 04 Mar 2022 21:39:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=12415\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:384:\"Matt Mullenweg speaks to WordPress contributors worldwide on this special edition of the WP Briefing podcast with Josepha Haden Chomphosy. Join us to hear Matt’s thoughts on Ukraine. Have a question you&#8217;d like answered? You can submit them to wpbriefing@wordpress.org, either written or as a voice recording. Credits Hosts: Josepha Haden Chomphosy and Matt Mullenweg [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:62:\"https://wordpress.org/news/files/2022/03/WP-Briefing-026-1.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Chloe Bringmann\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:6361:\"\n<p>Matt Mullenweg speaks to WordPress contributors worldwide on this special edition of the WP Briefing podcast with Josepha Haden Chomphosy. Join us to hear Matt’s thoughts on Ukraine.</p>\n\n\n\n<p><strong><em>H</em></strong><em><strong>ave a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 id=\"credits\">Credits</h2>\n\n\n\n<ul><li>Hosts: <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a> and <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a></li><li>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a></li><li>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a></li><li>Production:&nbsp;<a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a> &amp; <a href=\"https://profiles.wordpress.org/santanainniss/\">Santana Inniss</a></li></ul>\n\n\n\n<h2>How You Can Help</h2>\n\n\n\n<p><a href=\"https://www.unicefusa.org/stories/unicef-children-crossfire-ukraine-crisis/39542?utm_campaign=20220225_Emergencies&amp;utm_medium=Organic&amp;utm_source=UkraineWebStoryChildrenFeb2022&amp;utm_content=LearnMoreUkraineWebStoryChildrenFeb2022&amp;ms=Organic_PRL_2022_Emergencies_20220225_UkraineWebStoryChildrenFeb2022_LearnMoreUkraineWebStoryChildrenFeb2022_none_none&amp;initialms=Organic_PRL_2022_Emergencies_20220225_UkraineWebStoryChildrenFeb2022_LearnMoreUkraineWebStoryChildrenFeb2022_none_none\">UNICEF</a></p>\n\n\n\n<p><a href=\"https://www.doctorswithoutborders.org/what-we-do/countries/ukraine\">Médecins Sans Frontieres</a>&nbsp;</p>\n\n\n\n<p><a href=\"https://www.icrc.org/en/where-we-work/europe-central-asia/ukraine\">International Committee of the Red Cross</a>&nbsp;</p>\n\n\n\n<p><a href=\"https://help.rescue.org/donate/ukraine-acq?ms=gs_ppc_fy22_ukraine_mmus_feb&amp;initialms=gs_ppc_fy22_ukraine_mmus_feb&amp;gclid=CjwKCAiAjoeRBhAJEiwAYY3nDHNlEUUNRM4wKl1bY0ploy1RNl0M7G1OlLTqawZdg_XhrJ0TircZ_RoCfh8QAvD_BwE\">International Rescue Committee</a></p>\n\n\n\n<p><a href=\"https://www.unrefugees.org/what-we-do/\">UN Refugee Agency</a>&nbsp;</p>\n\n\n\n<p><a href=\"https://donate.wck.org/give/236738/#!/donation/checkout\">World Central Kitchen</a></p>\n\n\n\n<p><a href=\"https://www.techtotherescue.org/tech/tech-for-ukraine\">Tech For Ukraine</a></p>\n\n\n\n<p><a href=\"https://twitter.com/hashtag/wp4ukraine\">#WP4Ukraine</a></p>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-12415\"></span>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>00:00</p>\n\n\n\n<p>Hello, everyone, and welcome to a special edition of the WordPress Briefing. I have Matt here with me today because we want to acknowledge that we are once again at the start of a very difficult time. Neither of us would presume to know what it&#8217;s like to be at the heart of such massive disruption in our lives. But who would we be if we didn&#8217;t stop and check in with you all, the project that we hold so dear? And with that, I&#8217;ll hand it right over to you, Matt.</p>\n\n\n\n<p><strong>Matt Mullenweg&nbsp; </strong>00:27</p>\n\n\n\n<p>Hello everyone. First, I want to thank Josepha for inviting me to join the WordPress Briefing to share what’s been on my mind in light of recent global events.&nbsp;</p>\n\n\n\n<p><strong>Matt Mullenweg&nbsp; </strong>00:37</p>\n\n\n\n<p>I&#8217;ve been listening and watching events escalate in Ukraine, often in a state of shock. The scale alone is hard to take in. I mean, in the last 7 days, more than 500,000 people have fled their homes, more refugees are expected every day. The downstream humanitarian crises of the invasion are unimaginable.&nbsp;&nbsp;</p>\n\n\n\n<p><strong>Matt Mullenweg&nbsp; </strong>00:56</p>\n\n\n\n<p>And seeing destruction in the world we live in is confusing, disconcerting, and difficult. In my experience, open source and WordPress bring people together; people from other countries and cultures, people that we know as friends and colleagues. Technology connects us, regardless of where we are. Nothing can negate the bad things happening in the world, but when I see how this community of contributors collaborates, regardless of borders, you all remind me of the good in the world every day.</p>\n\n\n\n<p><strong>Matt Mullenweg&nbsp; </strong>01:30</p>\n\n\n\n<p>I firmly believe that the web can be an equalizer and a force for good in the world. To me, the WordPress project is the epitome of goodness—everyone has a voice, a platform, and a community. You have the power to make your corner of the world, and the web, a sanctuary for those who need it—especially now.</p>\n\n\n\n<p><strong>Matt Mullenweg&nbsp; </strong>01:45</p>\n\n\n\n<p>If you or someone you know is affected by this war, I encourage you to be present as the ramifications unfold. While we may all feel fatigued and have a sense of languishing from the past two years of the Covid pandemic, the gift of time and support for one another cannot be overstated. I&#8217;m confident that every single person in the WordPress community will approach the situation in Ukraine with sensitivity and understanding.&nbsp;</p>\n\n\n\n<p><strong>Matt Mullenweg&nbsp; </strong>02:07</p>\n\n\n\n<p>I invite you to join me in standing with those in the world working to end conflict and working toward a world of peace, promise, and opportunity. If you&#8217;re looking for a way to help support the humanitarian crisis in Ukraine, I will offer some suggested NGOs, or Non-Governmental Organizations, that provide assistance to local peacebuilders in the region.&nbsp;</p>\n\n\n\n<p><strong>Matt Mullenweg&nbsp; </strong>02:26</p>\n\n\n\n<p>In closing, please know that my thoughts are with everyone in our community. I know that my words here can’t change anything there, but I hope that we all remember that words of support are never unwelcome. And we can never know when a little human kindness can help someone share the invisible heaviness in their heart.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>02:44</p>\n\n\n\n<p>Thanks for that, Matt. My friends, there are links in the show notes to some of the groups that Matt referenced. And that is it for this special edition of the WordPress Briefing. I&#8217;m your host, Josepha Haden Chomphosy. Be safe, be kind to yourself and others, and I&#8217;ll see you again in a couple of weeks.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"12415\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"The Month in WordPress – February 2022\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wordpress.org/news/2022/03/the-month-in-wordpress-february-2022/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 04 Mar 2022 17:40:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:22:\"the month in wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=12411\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:332:\"There’s a lot going on in the world right now, and safety is top of mind for everyone in the WordPress community. If you don&#8217;t know where to begin, or how to support your peers, Executive Director Josepha Chomphosy’s advice to the global community is to start small.&#160; Overall, February has been a busy month [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Anjana Vasan\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:11940:\"\n<p>There’s a lot going on in the world right now, and safety is top of mind for everyone in the WordPress community. If you don&#8217;t know where to begin, or how to support your peers, Executive Director <a href=\"https://josepha.blog/2022/02/25/to-my-global-community-start-small/\">Josepha Chomphosy’s advice</a> to the global community is to start small.&nbsp;</p>\n\n\n\n<p>Overall, February has been a busy month for WordPress. To begin with, it was thrilling to see the enthusiasm for the release of WordPress 5.9 Joséphine from January continue last month, and that’s not all.&nbsp;</p>\n\n\n\n<p>We have many exciting updates to share, so keep reading to learn about the latest achievements from the WordPress community.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordPress 6.0: May 24, 2022 is the proposed release date</h2>\n\n\n\n<ul><li>The proposed <a href=\"https://make.wordpress.org/core/2022/02/16/wordpress-6-0-planning-roundup/\">release schedule for WordPress 6.0</a>, the second major release of 2022, has been published.</li><li>While we’re waiting for 6.0, check out the <a href=\"https://wordpress.org/news/2022/02/wordpress-5-9-1-maintenance-release/\">WordPress 5.9.1 maintenance release</a> which was released on February 22, 2022.</li></ul>\n\n\n\n<div class=\"wp-container-16 wp-block-buttons\">\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link\" href=\"https://wordpress.slack.com/archives/C02RQBWTW\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Are you interested in contributing to WordPress core?</strong> Join the #core channel in Slack. Also, don&#8217;t miss the Core Team’s weekly developer chat on Wednesdays at 8 PM UTC.</a></div>\n</div>\n\n\n\n<h2>Gutenberg releases: Versions 12.5, 12.6, and 12.7 were released</h2>\n\n\n\n<p>The Core Team launched three new versions of Gutenberg last month. All come with new features, code quality improvements, and bug fixes.</p>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2022/03/02/whats-new-in-gutenberg-12-7-2-march/\">Gutenberg 12.7 </a>is available to download. This version improves the Patterns experience, allows you to add border styles to column blocks, and includes other new features.</li><li><a href=\"https://make.wordpress.org/core/2022/02/16/whats-new-in-gutenberg-12-6-16-february/\">Gutenberg 12.6</a> was launched on February 16, 2022. This release includes a new color panel, updated color controls, a new Post Author Biography block, Read More block, and plenty of other exciting updates!</li><li><a href=\"https://make.wordpress.org/core/2022/02/03/whats-new-in-gutenberg-12-5-february-2nd/\">Gutenberg 12.5 </a>was released on February 2, 2022. This version allows switching theme styles variations, custom taxonomies filtering, and more.</li></ul>\n\n\n\n<div class=\"wp-container-17 wp-block-buttons\">\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link\" href=\"https://make.wordpress.org/chat/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Want to get involved in developing Gutenberg? </strong>Contribute to Gutenberg on GitHub, and join the #core-editor channel in the Make WordPress Slack. Follow the #gutenberg-new tag for details on the latest updates.</a></div>\n</div>\n\n\n\n<h2>WordPress News gets a new look</h2>\n\n\n\n<p>The redesign of <a href=\"https://wordpress.org/news\">WordPress News</a>, which was first announced by Matt Mullenweg, Co-Founder of WordPress, in State of the Word 2021, went live on February 16, 2022.</p>\n\n\n\n<div class=\"wp-container-18 wp-block-buttons\">\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link\" href=\"https://wordpress.org/news/2022/02/a-new-wordpress-news/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Read the redesign announcement </strong>to learn more about the inspiration behind the new look.</a></div>\n</div>\n\n\n\n<h2>Team updates: #WP Diversity, a new blog for developers, and more</h2>\n\n\n\n<ul><li>The #WPDiversity working group, which is part of the Community Team, hosted an open Zoom meeting with volunteers on February 23, 2022. If you’re interested in contributing, read the <a href=\"https://make.wordpress.org/community/2022/02/24/recap-of-the-diverse-speaker-training-group-wpdiversity-on-february-23-2022/\">recap of the meeting</a> to view available roles.&nbsp;</li><li>The Core Team shared a <a href=\"https://make.wordpress.org/core/2022/02/25/proposal-to-start-a-news-blog-on-developer-wordpress-org/\">proposal to start a blog</a> on developer.wordpress.org to share news and updates relevant to developers.&nbsp;</li><li>The first Gutenberg Developer Hours session hosted on February 8th by the Core Team was successful. Head over to <a href=\"https://make.wordpress.org/core/2022/02/24/february-8th-gutenberg-developer-hours-session-evaluation/\">this page</a> to learn more about the participants’ feedback.</li><li>The Core Team published “<a href=\"https://make.wordpress.org/core/2022/02/24/feature-project-plugin-dependencies/\">Feature Project: Plugin Dependencies</a>,” where they identified the problems with plugin dependencies and suggested potential solutions to improve the plugin experience.</li><li>The WordPress Photo Directory has a <a href=\"https://make.wordpress.org/photos/\">new Make team</a>. There is currently an open <a href=\"https://make.wordpress.org/photos/2022/02/23/photo-directory-team-rep-nominations-for-2022/\">call for team reps</a> and collaboration is happening at the new <a href=\"https://wordpress.slack.com/messages/photos/\">#photos</a> channel of the Make WordPress Slack.</li><li>The Polyglots Team shared a proposal for a <a href=\"https://make.wordpress.org/polyglots/2022/02/01/proposal-milestone-template-for-polyglots-locale-teams/\">milestone template </a>for the Polyglots Locale Teams.</li><li>The Community Team published a proposal for <a href=\"https://make.wordpress.org/community/2022/02/16/proposal-refurbishing-camera-kits/\">refurbishing camera kits</a>.</li><li>The <a href=\"https://make.wordpress.org/community/2022/02/21/2022-global-sponsors-announcement/\">Global Community Sponsors for 2022</a> have been announced.</li><li>The February 2022 edition of the monthly <a href=\"https://make.wordpress.org/community/2022/02/15/meetup-organizer-newsletter-february-2022/\">Meetup Organizer Newsletter</a> has been published.</li><li>The latest edition of People of WordPress highlighting <a href=\"https://wordpress.org/news/2022/02/people-of-wordpress-tonya-mork/\">Tonya Mork</a> was published on February 28, 2022. Read Tonya’s story to learn more about how WordPress helped her find herself again after a health crisis.&nbsp;</li><li>The February 2022 edition of the <a href=\"https://make.wordpress.org/polyglots/2022/02/22/polyglots-monthly-newsletter-february-2022/\">Polyglots Monthly Newsletter</a> has been published.</li></ul>\n\n\n\n<div class=\"wp-container-19 wp-block-buttons\">\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link\" href=\"\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>The Community Team published a discussion on diversity in WordPress events.</strong> If you’re comfortable sharing your experience, you can still comment on the post.</a></div>\n</div>\n\n\n\n<h2>Feedback/Testing requests: WordPress iOS 19.3 and Android 19.3 </h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/mobile/2022/02/22/call-for-testing-wordpress-for-ios-19-3/\">WordPress for iOS 19.3</a> beta is available for testing, along with <a href=\"https://make.wordpress.org/mobile/2022/02/22/call-for-testing-wordpress-for-android-19-3/\">WordPress for Android 19.3</a></li></ul>\n\n\n\n<div class=\"wp-container-20 wp-block-buttons\">\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link\" href=\"https://make.wordpress.org/polyglots/2022/02/08/call-for-early-testers-glotpress-feedback-feature/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Test and share your feedback</strong> on the GlotPress feedback feature.</a></div>\n</div>\n\n\n\n<h2>WordCamp Europe 2022 announces steps to ensure a diverse, inclusive, and welcoming event</h2>\n\n\n\n<ul><li>WordCamp Europe 2022 <a href=\"https://europe.wordcamp.org/2022/diversity-at-wceu/\">announced a plan</a> to ensure more diversity and inclusion in events moving forward.</li><li>The WordPress Foundation published a post on how <a href=\"https://wordpressfoundation.org/news/2022/open-source-software-good-for-business/\">open source software is good for business</a>.</li><li>In a recent episode of WP Briefing titled “<a href=\"https://wordpress.org/news/2022/02/episode-25-five-cents-on-five-for-the-future/\">Five Cents on Five for the Future</a>,” Executive Director Josepha Haden Chomphosy talks about future-proofing the WordPress project with the Five for the Future pledge.</li><li>The Training Team is hosting several WordPress Social Learning Meetups <a href=\"https://www.meetup.com/wordpress-social-learning/events/\">in March 2022</a>.</li><li>Don’t miss the following upcoming WordCamps:<ul><li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1e8-1f1ed.png\" alt=\"??\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://geneve.wordcamp.org/2022/\">WordCamp Genève</a>, Switzerland on April 9, 2022 (in person)</li><li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ec-1f1f7.png\" alt=\"??\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://central.wordcamp.org/wordcamps/wordcamp-athens-attica-greece-2022/\">WordCamp Athens</a>, Greece between April 9 and 10, 2022 (in person)</li><li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1e6-1f1f9.png\" alt=\"??\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://vienna.wordcamp.org/2022/\">WordCamp Vienna</a>, Austria from April 23 to 24, 2022 (in person)</li><li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ea-1f1fa.png\" alt=\"??\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://europe.wordcamp.org/2022/\">WordCamp Europe</a> in Porto, Portugal from June 2 to 4, 2022 (in person)</li><li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1fa-1f1f8.png\" alt=\"??\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://montclair.wordcamp.org/2022/\">WordCamp Montclair</a> in New Jersey, USA June 25 (in person)</li><li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1fa-1f1f8.png\" alt=\"??\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://us.wordcamp.org/2022/\">WordCamp US</a> in San Diego, California from September 9 to 11, 2022 (in person)</li></ul></li></ul>\n\n\n\n<div class=\"wp-container-21 wp-block-buttons\">\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link\" href=\"https://europe.wordcamp.org/2022/call-for-volunteers/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>It’s not too late to be a volunteer at WordCamp Europe 2022. </strong>If you’re interested, head over to this page to apply.</a></div>\n</div>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p><strong><em>Have a story that we could include in the next ‘Month in WordPress’ post? Let us know by filling out </em></strong><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><strong><em>this form</em></strong></a><strong><em>.</em></strong></p>\n\n\n\n<p><em>The following folks contributed to this Month in WordPress: </em><a href=\'https://profiles.wordpress.org/anjanavasan/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>anjanavasan</a><em> </em><a href=\'https://profiles.wordpress.org/harishanker/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>harishanker</a><em> </em><a href=\'https://profiles.wordpress.org/rmartinezduque/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>rmartinezduque</a> <a href=\'https://profiles.wordpress.org/mysweetcate/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>mysweetcate</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"12411\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:78:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"People of WordPress: Tonya Mork\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://wordpress.org/news/2022/02/people-of-wordpress-tonya-mork/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 28 Feb 2022 23:55:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:8:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Features\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:10:\"Interviews\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:3:\"5.9\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:4:\"core\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:9:\"HeroPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:6;a:5:{s:4:\"data\";s:19:\"People of WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:7;a:5:{s:4:\"data\";s:9:\"Test Team\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=12151\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"The People of WordPress feature this month shares the story of engineer and developer Tonya Mork. \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"webcommsat AbhaNonStopNewsUK\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:14131:\"\n<p><strong>In this series, we share some of the inspiring stories of how WordPress and its global network of contributors can change people’s lives for the better. This month we feature a website developer and engineer from the US, who found the software and its community provide the impetus to keep her going forward.</strong></p>\n\n\n\n<p>WordPress gave Tonya Mork a new lease of energy after a health crisis from which she nearly died. She had spent two decades as an electrical and software engineer in high tech automated manufacturing. But when she discovered the WordPress software, teaching it to others became her new purpose. Through this discovery, she has gone on to help thousands of developers understand and build code in great depth.</p>\n\n\n\n<p>As part of her WordPress journey, she has shared her skills in the roles of Release Coordinator and the Core Tech Editor for the most recent major WordPress release, <a href=\"https://make.wordpress.org/core/5-9/\">5.9</a> Joséphine.&nbsp;</p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img loading=\"lazy\" width=\"1024\" height=\"515\" src=\"https://i0.wp.com/wordpress.org/news/files/2022/02/featured-img-tonyamork.jpg?resize=1024%2C515&#038;ssl=1\" alt=\"Tonya pictured in her work room\" class=\"wp-image-12326\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2022/02/featured-img-tonyamork.jpg?resize=1024%2C515&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2022/02/featured-img-tonyamork.jpg?resize=300%2C151&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2022/02/featured-img-tonyamork.jpg?resize=768%2C386&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2022/02/featured-img-tonyamork.jpg?w=1247&amp;ssl=1 1247w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure></div>\n\n\n\n<h2 id=\"life-takes-an-unexpected-turn\">Life takes an unexpected turn</h2>\n\n\n\n<p>For the first 22 years of Tonya’s life, she rose through the ranks from enlisted personnel in the US Navy to a highly sought after chief engineer with a multi million-dollar industrial automation engineering firm.  </p>\n\n\n\n<p>However, while she was working in engineering, her life was to change dramatically. In 2007, Tonya started to face health challenges that had an impact on all that she had known.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p><strong>“My career defined me. It was my canvas and my art. When it was gone, I did not recognize myself.</strong></p><cite>Tonya Mork</cite></blockquote>\n\n\n\n<p>One day, she woke up at home ready to visit a client’s facility where her firm was building a robotic system. She said: “As I headed for the door, I fell to my knees, as this wave of pain crushed down on my chest.”</p>\n\n\n\n<p>Doctors diagnosed her with a very rare heart disease that caused her blood vessels to spasm, cutting off blood to whatever was downstream of the blockage. </p>\n\n\n\n<p>A few months later, she was diagnosed with a second rare and more serious condition, related to the migraines from which she had been suffering. Combined with her heart condition, this made every migraine attack life-threatening.</p>\n\n\n\n<p>For nearly seven years, the unexpected changes to her health left her mostly homebound and constantly monitored. This meant she had to close her engineering firm and say goodbye to staff and clients. </p>\n\n\n\n<p>“My career defined me. It was my canvas and my art. When it was gone, I was lost. I didn’t recognize myself.”</p>\n\n\n\n<p>But in her darkest hour, she found her strength. Tonya made a choice to move forward, and make the most of her life.</p>\n\n\n\n<p>“When you are at rock bottom, you have to make a decision or else it will consume you. My decision was that I chose to be happy,” said Tonya.</p>\n\n\n\n<p>One of Tonya’s first steps was to start writing a blog using WordPress. In this she shared insights on how to find peace and joy in any situation. She wrote about kindness and helping one another.&nbsp;</p>\n\n\n\n<p>The joy of making solutions through WordPress became a way for Tonya to accept her new life and not feel as limited by her health. She wanted purpose, and in WordPress, she found just that.</p>\n\n\n\n<p>Tonya felt she could do something worthwhile in the virtual world.&nbsp;</p>\n\n\n\n<h2 id=\"a-ray-of-hope-for-tonya\">A ray of hope for Tonya</h2>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-full\"><img loading=\"lazy\" width=\"1000\" height=\"750\" src=\"https://i1.wp.com/wordpress.org/news/files/2022/02/tonya.jpg?resize=1000%2C750&#038;ssl=1\" alt=\"\" class=\"wp-image-12327\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2022/02/tonya.jpg?w=1000&amp;ssl=1 1000w, https://i1.wp.com/wordpress.org/news/files/2022/02/tonya.jpg?resize=300%2C225&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2022/02/tonya.jpg?resize=768%2C576&amp;ssl=1 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure></div>\n\n\n\n<p>In 2013, Tonya’s health deteriorated further. She was admitted into intensive care and was diagnosed with a third rare disease, this time related to her autoimmunity. She was not expected to survive this time. </p>\n\n\n\n<p>Following what she describes as a ‘miraculous recovery,’ she became stronger and was able to stop relying on a wheelchair. She used the energy from working on websites to keep going. “WordPress kept my mind alive,” said Tonya.</p>\n\n\n\n<p>She had first used WordPress for her engineering firm’s intranet. But when she discovered the software’s full potential and the collaborative opportunities of open source, it opened a new world.&nbsp;</p>\n\n\n\n<figure class=\"wp-block-pullquote\"><blockquote><p>&#8220;Finding WordPress helped me to find myself again&#8221;</p><cite>Tonya Mork</cite></blockquote></figure>\n\n\n\n<p>During the years which followed, she donated her time to build some WordPress websites and plugins. She said: “Through giving my time, I was able to do something other than sit in isolation.” </p>\n\n\n\n<p>Tonya was amazed by the sharing in open source in general and in WordPress in particular. She said: “I was amazed to see people sharing so much information freely with one another. In my former engineering world, information was proprietary. Throughout my career, I had worked to break down those silos and help anyone to understand complex systems. I was drawn to this open community.”&nbsp;</p>\n\n\n\n<p>She also became aware that WordPress developers were hungry to learn more about development. She wanted to be part of the solution with her passion for teaching and the knowledge she had gained in industry.<br><br>She said: “Finding WordPress helped me to find myself again. Here in this community, I was able to feel like a person again, not a sick one, but a professional with something to give.”</p>\n\n\n\n<p>As her interest in the software grew, Tonya decided to start a non-profit where she turned to WordPress to build the websites. This re-sparked her interest in programming. She said: “I wanted to really know the code and understand what made it tick.”</p>\n\n\n\n<p>The realization led Tonya to start the WP Developers’ Club, which in turn spawned <a href=\"https://knowthecode.io/\">Know the Code</a>, to help educate individual developers, and is still used today.</p>\n\n\n\n<h2 id=\"from-helping-wordpress-companies-to-working-on-wordpress-core\">From helping WordPress companies to working on WordPress Core</h2>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-full\"><img loading=\"lazy\" width=\"300\" height=\"300\" src=\"https://i0.wp.com/wordpress.org/news/files/2022/02/tonya-with-dog.jpg?resize=300%2C300&#038;ssl=1\" alt=\"Tonya pictured with her dog\" class=\"wp-image-12328\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2022/02/tonya-with-dog.jpg?w=300&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2022/02/tonya-with-dog.jpg?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" data-recalc-dims=\"1\" /></figure></div>\n\n\n\n<p>Tonya went on to work with big and medium size WordPress companies helping their developers and supporting them in raising their firms’ leverage with WordPress.</p>\n\n\n\n<p>By late 2020, she knew she wanted to do even more with WordPress.</p>\n\n\n\n<p>In February 2021, Tonya joined an international firm in the ecosystem and began working closely on WordPress Core.</p>\n\n\n\n<p>At that time, WordPress Core was pulling together a new Triage team. Tonya started volunteering on that team to find collaborative solutions, and help others do so. In 2020 for <a href=\"https://wordpress.org/news/2020/12/simone/\">WordPress 5.6 Simone</a>, she became the release’s Triage lead, and again for <a href=\"https://make.wordpress.org/core/5-7/\">WordPress 5.7 Esperanza</a>.&nbsp;</p>\n\n\n\n<p>In 2021, she became a Test Team Rep and helped to expand the team and is an advocate for the value of testing and feedback in the release development process.</p>\n\n\n\n<h2 id=\"a-new-successful-chapter-with-wordpress-5-9\">A new, successful chapter with WordPress 5.9</h2>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img loading=\"lazy\" width=\"1024\" height=\"480\" src=\"https://i1.wp.com/wordpress.org/news/files/2022/02/WP59-thumbnail-jb.png?resize=1024%2C480&#038;ssl=1\" alt=\"Tonya was one of the notable contributors to the WordPress 5.9 release featured in this picture.\" class=\"wp-image-12329\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2022/02/WP59-thumbnail-jb.png?resize=1024%2C480&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2022/02/WP59-thumbnail-jb.png?resize=300%2C141&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2022/02/WP59-thumbnail-jb.png?resize=768%2C360&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2022/02/WP59-thumbnail-jb.png?resize=1536%2C719&amp;ssl=1 1536w, https://i1.wp.com/wordpress.org/news/files/2022/02/WP59-thumbnail-jb.png?resize=2048%2C959&amp;ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure></div>\n\n\n\n<p>Tonya’s passion for the software and getting people involved in its growth continued. For the WordPress 5.9 release in 2021, she took on the role of both the Core Tech Lead and the Release Coordinator. As this was a big release and included the first major implementation of Full Site Editing, it had many moving parts and hundreds of contributors. She was able to share the skills she had learned in communication and project management from her days streamlining and documenting engineering software and processes.&nbsp;</p>\n\n\n\n<p>In the first 24 hours of WordPress 5.9 landing, it had more than 10 million downloads—and 17 formally reported bugs.</p>\n\n\n\n<h2 id=\"giving-back-to-open-source\">Giving back to open source</h2>\n\n\n\n<p>Now in what Tonya describes as her third chapter. She said: “I’m a very different person from the engineer I used to know. What really matters in this world is when you reach out and make a difference in someone’s life.”</p>\n\n\n\n<p>She feels she has found her purpose in this life. “I’m on a mission to give back and make a difference. Teaching is how I will do it. And in WordPress I have found my professional home, and I have all this software knowledge that I just want to share.”</p>\n\n\n\n<h2 id=\"share-the-stories\">Share the stories</h2>\n\n\n\n<p>Help share these stories of open source contributors and continue to grow the community. Meet more WordPressers in the <a href=\"https://wordpress.org/news/category/newsletter/interviews/\">People of WordPress series</a>.</p>\n\n\n\n<h2 id=\"contributors-to-this-feature\">Contributors to this feature</h2>\n\n\n\n<p>Thank you to Tonya Mork (<a href=\'https://profiles.wordpress.org/hellofromtonya/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>hellofromtonya</a>) for sharing her story. </p>\n\n\n\n<p>Interviews and feature by Abha Thakor (<a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a>) and Mary Baum (<a href=\'https://profiles.wordpress.org/marybaum/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>marybaum</a>). Reviewed by Chloe Bringmann (<a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a>), Nalini Thakor (<a href=\'https://profiles.wordpress.org/nalininonstopnewsuk/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>nalininonstopnewsuk</a>), Meher Bala (<a href=\'https://profiles.wordpress.org/meher/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>meher</a>), and Anjana Vasan (<a href=\'https://profiles.wordpress.org/anjanavasan/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>anjanavasan</a>). Photo editing Reyez Martínez (<a href=\'https://profiles.wordpress.org/rmartinezduque/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>rmartinezduque</a>) and Jean Baptiste Audras (<a href=\'https://profiles.wordpress.org/audrasjb/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>audrasjb</a>). </p>\n\n\n\n<p><em>Thanks to Josepha Haden Chomphosy&nbsp;(@<a href=\"https://profiles.wordpress.org/chanthaboune/\">chanthaboune</a>) and Topher DeRosia (<a href=\"https://profiles.wordpress.org/topher1kenobe/\">@topher1kenobe</a>) and others for their support&nbsp;</em>of this initiative.</p>\n\n\n\n<div class=\"wp-block-media-text is-stacked-on-mobile is-vertically-aligned-center\" style=\"grid-template-columns:29% auto\"><figure class=\"wp-block-media-text__media\"><img loading=\"lazy\" width=\"180\" height=\"135\" src=\"https://i1.wp.com/wordpress.org/news/files/2020/03/heropress_logo_180.png?resize=180%2C135&#038;ssl=1\" alt=\"HeroPress logo\" class=\"wp-image-8409 size-full\" data-recalc-dims=\"1\" /></figure><div class=\"wp-block-media-text__content\">\n<p class=\"has-small-font-size\"><em>This People of WordPress feature is inspired by an essay originally published on </em><a href=\"https://heropress.com/\"><em>HeroPress.com</em></a><em>, a community initiative created by Topher DeRosia. It highlights people in the WordPress community who have overcome barriers and whose stories might otherwise go unheard. </em>#HeroPress </p>\n</div></div>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"12151\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:57:\"\n		\n		\n		\n		\n		\n				\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"WordPress 5.9.1 Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2022/02/wordpress-5-9-1-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 22 Feb 2022 15:49:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=12266\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 5.9.1 is now available!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Jb Audras\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:7802:\"\n<p>WordPress 5.9.1 is now available!</p>\n\n\n\n<p>This maintenance release features&nbsp;82 bug fixes in both Core and the block editor.</p>\n\n\n\n<p>WordPress 5.9.1 is a short-cycle maintenance release. The next major release will be version&nbsp;<a href=\"https://make.wordpress.org/core/6.0/\">6.0</a>.</p>\n\n\n\n<p>You can <a href=\"https://wordpress.org/wordpress-5.9.1.zip\">download WordPress 5.9.1 from WordPress.org</a>, or visit your Dashboard&nbsp;→ Updates and click &#8220;Update Now&#8221;.</p>\n\n\n\n<p>If you have sites that support automatic background updates, they’ve already started the update process.</p>\n\n\n\n<p>For more information, browse the <a href=\"https://make.wordpress.org/core/2022/02/16/wordpress-5-9-1-rc-1/\">full list of both Trac and GitHub changes in the release candidate post</a>, or check out the&nbsp;<a href=\"https://wordpress.org/support/wordpress-version/version-5-9-1/\">version 5.9.1 HelpHub documentation page</a>.</p>\n\n\n\n<h2 id=\"thanks-and-props\">Thanks and props!</h2>\n\n\n\n<p>The 5.9.1 release was led by&nbsp;<a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>&nbsp;and&nbsp;<a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a>.</p>\n\n\n\n<p>Special props to <a href=\'https://profiles.wordpress.org/sergeybiryukov/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>sergeybiryukov</a> for running mission control.</p>\n\n\n\n<p>Thank you to everyone who helped make WordPress 5.9.1 happen:</p>\n\n\n\n<p class=\"is-style-wporg-props-medium alignfull\"><a href=\"https://profiles.wordpress.org/aljullu/\">Albert Juhé Lluveras</a>, <a href=\"https://profiles.wordpress.org/ajlende/\">Alex Lende</a>, <a href=\"https://profiles.wordpress.org/alexstine/\">alexstine</a>, <a href=\"https://profiles.wordpress.org/oandregal/\">André</a>, <a href=\"https://profiles.wordpress.org/antonvlasenko/\">Anton Vlasenko</a>, <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a>, <a href=\"https://profiles.wordpress.org/madeinua/\">ArteMa</a>, <a href=\"https://profiles.wordpress.org/scruffian/\">Ben Dwyer</a>, <a href=\"https://profiles.wordpress.org/blogaid/\">BlogAid</a>, <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a>, <a href=\"https://profiles.wordpress.org/critterverse/\">Channing Ritter</a>, <a href=\"https://profiles.wordpress.org/chrisvanpatten/\">Chris Van Patten</a>, <a href=\"https://profiles.wordpress.org/costdev/\">Colin Stewart</a>, <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/davidbinda/\">David Biňovec</a>, <a href=\"https://profiles.wordpress.org/get_dave/\">David Smith</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/eddystile/\">Eddy</a>, <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van Durpe</a>, <a href=\"https://profiles.wordpress.org/kebbet/\">Erik</a>, <a href=\"https://profiles.wordpress.org/fabiankaegy/\">Fabian Kägy</a>, <a href=\"https://profiles.wordpress.org/azouamauriac/\">Flinim Asso</a>, <a href=\"https://profiles.wordpress.org/gadhiyaravi/\">gadhiyaravi</a>, <a href=\"https://profiles.wordpress.org/revgeorge/\">George Hotelling</a>, <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a>, <a href=\"https://profiles.wordpress.org/glendaviesnz/\">glendaviesnz</a>, <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/ianatkins/\">ianatkins</a>, <a href=\"https://profiles.wordpress.org/ianbelanger/\">Ian Belanger</a>, <a href=\"https://profiles.wordpress.org/ironprogrammer/\">ironprogrammer</a>, <a href=\"https://profiles.wordpress.org/itsamoreh/\">itsamoreh</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jffng/\">Jeff Ong</a>, <a href=\"https://profiles.wordpress.org/jeherve/\">Jeremy Herve</a>, <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joen/\">Joen A.</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a>, <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a>, <a href=\"https://profiles.wordpress.org/kafleg/\">KafleG</a>, <a href=\"https://profiles.wordpress.org/kapilpaul/\">Kapil Paul</a>, <a href=\"https://profiles.wordpress.org/kjellr/\">Kjell Reigstad</a>, <a href=\"https://profiles.wordpress.org/linux4me2/\">linux4me2</a>, <a href=\"https://profiles.wordpress.org/pyrobd/\">Lukman Nakib</a>, <a href=\"https://profiles.wordpress.org/manfcarlo/\">manfcarlo</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/mgol/\">mgol</a>, <a href=\"https://profiles.wordpress.org/nidhidhandhukiya/\">nidhidhandhukiya</a>, <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a>, <a href=\"https://profiles.wordpress.org/alshakero/\">Omar Alshaker</a>, <a href=\"https://profiles.wordpress.org/pls78/\">Paolo L. Scala</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/pbearne/\">Paul Bearne</a>, <a href=\"https://profiles.wordpress.org/malinevskiy/\">Pavlo</a>, <a href=\"https://profiles.wordpress.org/petaryoast/\">Petar Ratković</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/walbo/\">Petter Walbø Johnsgård</a>, <a href=\"https://profiles.wordpress.org/johnstonphilip/\">Phil Johnston</a>, <a href=\"https://profiles.wordpress.org/boniu91/\">Piotrek Boniu</a>, <a href=\"https://profiles.wordpress.org/ravipatel/\">ravipatel</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a>, <a href=\"https://profiles.wordpress.org/rolfsiebers/\">Rolf Siebers</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/stacimc/\">stacimc</a>, <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a>, <a href=\"https://profiles.wordpress.org/mahype/\">Sven Wagener</a>, <a href=\"https://profiles.wordpress.org/staatic/\">Team Staatic</a>, <a href=\"https://profiles.wordpress.org/tnolte/\">Tim Nolte</a>, <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a>, <a href=\"https://profiles.wordpress.org/webcommsat/\">webcommsat AbhaNonStopNewsUK</a>, <a href=\"https://profiles.wordpress.org/webmandesign/\">WebMan Design | Oliver Juhas</a>, <a href=\"https://profiles.wordpress.org/antonynz/\">wpcharged</a>, <a href=\"https://profiles.wordpress.org/wpsoul/\">wpsoul</a>, <a href=\"https://profiles.wordpress.org/dolphingg/\">Yunus Ertuğrul</a>, and <a href=\"https://profiles.wordpress.org/rafiahmedd/\">Rafi Ahmed</a>.</p>\n\n\n\n<p>Thanks to <a href=\'https://profiles.wordpress.org/estelaris/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>estelaris</a>, <a href=\'https://profiles.wordpress.org/pbiron/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>pbiron</a>, <a href=\'https://profiles.wordpress.org/ironprogrammer/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>ironprogrammer</a>, <a href=\'https://profiles.wordpress.org/bph/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>bph</a>, <a href=\'https://profiles.wordpress.org/abhanonstopnewsuk/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>abhanonstopnewsuk</a> and <a href=\'https://profiles.wordpress.org/threadi/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>threadi</a> for their help to test the release package.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"12266\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:61:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"WP Briefing: Episode 25: Five Cents on Five for the Future\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://wordpress.org/news/2022/02/episode-25-five-cents-on-five-for-the-future/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 21 Feb 2022 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=12288\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:450:\"In this twenty-fifth episode of the WordPress Briefing, Executive Director, Josepha Haden Chomphosy discusses future-proofing the WordPress project with the Five for the Future pledge. Have a question you&#8217;d like answered? You can submit them to wpbriefing@wordpress.org, either written or as a voice recording. Credits Editor:&#160;Dustin Hartzler Logo:&#160;Beatriz Fialho Production:&#160;Chloé Bringmann &#38; Santana Inniss Song: [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2022/02/WP-Briefing-025.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Chloe Bringmann\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:10286:\"\n<p>In this twenty-fifth episode of the WordPress Briefing, Executive Director, Josepha Haden Chomphosy discusses future-proofing the WordPress project with the Five for the Future pledge. </p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 id=\"credits\">Credits</h2>\n\n\n\n<ul><li>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a></li><li>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a></li><li>Production:&nbsp;<a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a> &amp; <a href=\"https://profiles.wordpress.org/santanainniss/\">Santana Inniss</a></li><li>Song: Fearless First by Kevin MacLeod</li></ul>\n\n\n\n<h2 id=\"references\">References</h2>\n\n\n\n<ul><li><a href=\"https://ma.tt/2014/09/five-for-the-future/\">Five for the Future</a>, on ma.tt circa 2014</li><li><a href=\"https://www.cambridge.org/core/books/governing-the-commons/A8BB63BC4A1433A50A3FB92EDBBB97D5\">Governing the Commons</a>, Elinor Ostrom</li><li><a href=\"https://wordpress.org/five-for-the-future/files/2022/01/WP-Sponsored-Contributor-Team-White-Paper-Google-Docs.pdf\">Five for the Future White Paper</a></li><li><a href=\"https://make.wordpress.org/core/2022/02/16/wordpress-6-0-planning-roundup/\">6.0 Planning Roundup</a></li><li><a href=\"https://learn.wordpress.org/course/simple-site-design-with-full-site-editing/\">Part I: Full Site Editing Course</a></li><li><a href=\"https://learn.wordpress.org/course/part-2-personalized-site-design-with-full-site-editing-and-theme-blocks/\">Part II: Full Site Editing Course</a></li><li><a href=\"https://learn.wordpress.org/course/part-3-advanced-site-design-with-full-site-editing-site-editor-templates-and-template-parts/\">Part III: Full Site Eiditing Course</a></li></ul>\n\n\n\n<h2 id=\"transcript\">Transcript</h2>\n\n\n\n<span id=\"more-12288\"></span>\n\n\n\n<p>Episode 25</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:00:00]&nbsp;</strong></p>\n\n\n\n<p>Hello everyone, and welcome to the WordPress Briefing. The podcast where you can catch quick explanations of the ideas behind the WordPress open source project. Some insight into the community that supports it and get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy &#8211; here we go!</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:00:42]&nbsp;</strong></p>\n\n\n\n<p>I have a non-mailbag mailbag question that I would like to answer for y&#8217;all today. Non-mailbag because no one actually emailed me about it and mailbag because Twitter is basically like a giant mailbag. And I do get a lot of DMS about this particular topic. If you want to send something to my actual WP Briefing mailbag, you can send it to <a href=\"mailto:wpbriefing@worpress.org\">wpbriefing@worpress.org</a>.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:01:06]&nbsp;</strong></p>\n\n\n\n<p>But the question that I frequently get asked in my DMS on Twitter is: what is Five for the Future? It&#8217;s not always that tidy the question, but that still is the question we&#8217;re answering today. So if you take a casual survey of active contributors to the WordPress project, the high-level answer that you&#8217;re likely to get to that question is “a way to remind people to give back to the project.” Or, if you run in more business-y circles, you might hear that it is an initiative that encourages companies to give back 5% of their resources.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:01:40]&nbsp;</strong></p>\n\n\n\n<p>And both of those answers are true. So a quick mini-history lesson; the original concept of Five for the Future came from Matt Mullenweg in 2014. There&#8217;s a lovely blog post on it that I will link in the notes below, but it was essentially a call to any companies experiencing success with WordPress to contribute back to the project and make sure that the project was a success.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:02:07]&nbsp;</strong></p>\n\n\n\n<p>The initial program then included outreach recognition, et cetera, proposed in 2017 by <a href=\"https://wordpress.org/support/users/liljimmi/\">Tracy Levesque</a> and <a href=\"https://wordpress.org/support/users/iandunn/\">Ian Dunn</a>. Then that was defined and formalized with the help of the WordPress community in 2018. And then, in 2019, we had our first trial run with entire dedicated teams sponsored by companies inside the WordPress ecosystem.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:02:36]&nbsp;</strong></p>\n\n\n\n<p>So that&#8217;s the mini-history lesson chronology of this program. The intentions that informed the work of building the program in 2017 have become a bit lost to the ages. So I&#8217;m here to share it with you. The basic heart and soul of the Five for the Future program is to make sure that there is a way to refresh the commons of the WordPress community and ecosystem.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:03:00]&nbsp;</strong></p>\n\n\n\n<p>And as a result, ensure that the common resources of WordPress are available long after we have stopped being available to care for them. If you are familiar with the concept of the tragedy of the commons, Five for the Future was created to help avoid that tragedy. There were two original goals for formalizing the program.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:03:22]&nbsp;</strong></p>\n\n\n\n<p>The first one was to acknowledge companies that participated in Five for the Future by sponsoring contributors to work on the WordPress project. And the second was to motivate more companies to sponsor more volunteers. Either by hiring them and paying them to contribute or by assigning their existing employees to contribute to the WordPress project.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:03:46]&nbsp;</strong></p>\n\n\n\n<p>Of course, it&#8217;s hard to quantify participation and hard to qualify what should be seen as an impactful contribution, which is why when the program was originally created, it was in partnership with team reps and community members who were active at the time. There are many posts around that discuss the next steps for this program.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:04:07]&nbsp;</strong></p>\n\n\n\n<p>And as I&#8217;m looking through them, the next steps revolve around some of the hardest and most important questions that we have to answer as a project and as stewards of open source. Those questions are things like:</p>\n\n\n\n<ul><li> How do we remain true to these gloriously subversive values of WordPress and open source while also finding a way to thoughtfully secure our organization&#8217;s future?</li><li>Does contributing without the expectation of reciprocity hold up when we are looking at how to acknowledge contributors who sustain us?</li></ul>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:04:40]&nbsp;</strong></p>\n\n\n\n<p>And if you&#8217;re familiar with Elinor Ostrom&#8217;s award-winning work, Governing the Commons, you may also be wondering how this particular program aligns with her eight principles designed to sustain organizations like ours.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:04:57]&nbsp;</strong></p>\n\n\n\n<p>As an aside to that last question, this particular program does not have all eight principles accounted for, but among WordPress&#8217;s many programs, we do account for most of them. Although imperfectly, as is the way with human beings, that&#8217;s probably a whole episode unto itself, I did want to quickly answer that particular question.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:05:16]&nbsp;</strong></p>\n\n\n\n<p>So to get back to my non-mailbag, mailbag question, if I had to tell you in the span of an elevator ride what Five for the Future was, this would be my answer. <strong>It is a v1 program with a dual goal of boldly declaring the need to refresh the shared resources of WordPress and offering the ways and means for communities and individuals alike to participate in refreshing those resources</strong>.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:05:45]&nbsp;</strong></p>\n\n\n\n<p>If you want to learn more about the Five for the Future initiative, you can check out wordpress.org/5. Like literally just the number five. Or, if you want to learn more about the program that has grown from the Five for the Future initiative, you can check out the white paper that&#8217;s linked in the notes below.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:06:11]&nbsp;</strong></p>\n\n\n\n<p>And that brings us now to our small list of big things. Number one on my small list, the planning post for WordPress 6.0 is out. I&#8217;ve included a link in my massive list of links below. But it includes our best guess at timing, features that we intend to include, and a call for volunteers as well. So if you are looking for ways to give back, that is a clear and immediate option.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:06:38]&nbsp;</strong></p>\n\n\n\n<p>The second thing on the list is if you are a team rep, don&#8217;t forget that we have daylight saving time ending and starting depending on your hemisphere within the month. If you move meetings, if you&#8217;re in a team that moves your meetings, discuss it now so that folks have time to adjust their calendars.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:06:55]&nbsp;</strong></p>\n\n\n\n<p>And the third thing on my small list of big things is that there&#8217;s a suite of Full Site Editing courses that are now available on learn.wordpress.org. I will add that to my giant list of links below, but I encourage you to wander on over and see what all the fuss is about. I think the courses are excellent. They&#8217;re great for folks who don&#8217;t quite know what Full Site Editing is yet, but then also they give you a few intermediate tips and tricks as you&#8217;re getting your legs underneath you.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:07:27]&nbsp;</strong></p>\n\n\n\n<p>So, that my friends, is your small list of big things. Thank you for tuning in today for the WordPress Briefing. I&#8217;m your host, Josepha Haden Chomphosy. I&#8217;ll see you again in a couple of weeks.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"12288\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:63:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"A New WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2022/02/a-new-wordpress-news/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 16 Feb 2022 17:56:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:6:\"Design\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:4:\"Meta\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=12244\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:385:\"In June 2021, @beafialho in collaboration with @pablohoney floated the idea of giving WordPress News a new look. Today, those ideas become a reality—we&#8217;re excited to share that redesign of WordPress News is live! The new design leans on the aesthetics of jazz, intrinsically connected to WordPress and which ultimately translates its uniqueness, historic significance [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Kelly Hoffman\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:5727:\"\n<figure class=\"wp-block-image alignfull size-full\"><img loading=\"lazy\" width=\"2560\" height=\"1605\" src=\"https://i1.wp.com/wordpress.org/news/files/2022/02/news_responsive_sizes-scaled.jpg?resize=2560%2C1605&#038;ssl=1\" alt=\"\" class=\"wp-image-12279\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2022/02/news_responsive_sizes-scaled.jpg?w=2560&amp;ssl=1 2560w, https://i1.wp.com/wordpress.org/news/files/2022/02/news_responsive_sizes-scaled.jpg?resize=300%2C188&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2022/02/news_responsive_sizes-scaled.jpg?resize=1024%2C642&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2022/02/news_responsive_sizes-scaled.jpg?resize=768%2C482&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2022/02/news_responsive_sizes-scaled.jpg?resize=1536%2C963&amp;ssl=1 1536w, https://i1.wp.com/wordpress.org/news/files/2022/02/news_responsive_sizes-scaled.jpg?resize=2048%2C1284&amp;ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>In June 2021, <a href=\'https://profiles.wordpress.org/beafialho/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>beafialho</a> in collaboration with <a href=\'https://profiles.wordpress.org/pablohoney/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>pablohoney</a> <a href=\"https://make.wordpress.org/design/2021/06/03/redesign-of-wordpress-org-news/\">floated the idea</a> of giving WordPress News a new look. Today, those ideas become a reality—we&#8217;re excited to share that redesign of <a href=\"https://wordpress.org/news/\">WordPress News</a> is live!</p>\n\n\n\n<p>The new design leans on the aesthetics of jazz, intrinsically connected to WordPress and which ultimately translates its uniqueness, historic significance and future potential. Among other improvements, the new design leaves more space for content and includes new typefaces for better readability. It also uses a color palette intended to reflect the evolving Gutenberg language.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" width=\"2560\" height=\"1605\" src=\"https://i0.wp.com/wordpress.org/news/files/2022/02/news_postpages-scaled.jpg?resize=2560%2C1605&#038;ssl=1\" alt=\"\" class=\"wp-image-12260\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2022/02/news_postpages-scaled.jpg?w=2560&amp;ssl=1 2560w, https://i0.wp.com/wordpress.org/news/files/2022/02/news_postpages-scaled.jpg?resize=300%2C188&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2022/02/news_postpages-scaled.jpg?resize=1024%2C642&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2022/02/news_postpages-scaled.jpg?resize=768%2C482&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2022/02/news_postpages-scaled.jpg?resize=1536%2C963&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2022/02/news_postpages-scaled.jpg?resize=2048%2C1284&amp;ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" width=\"2560\" height=\"1605\" src=\"https://i2.wp.com/wordpress.org/news/files/2022/02/news_communitypodcast-scaled.jpg?resize=2560%2C1605&#038;ssl=1\" alt=\"\" class=\"wp-image-12262\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2022/02/news_communitypodcast-scaled.jpg?w=2560&amp;ssl=1 2560w, https://i2.wp.com/wordpress.org/news/files/2022/02/news_communitypodcast-scaled.jpg?resize=300%2C188&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2022/02/news_communitypodcast-scaled.jpg?resize=1024%2C642&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2022/02/news_communitypodcast-scaled.jpg?resize=768%2C482&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2022/02/news_communitypodcast-scaled.jpg?resize=1536%2C963&amp;ssl=1 1536w, https://i2.wp.com/wordpress.org/news/files/2022/02/news_communitypodcast-scaled.jpg?resize=2048%2C1284&amp;ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>The revamp of the WordPress News page includes the header and footer of the page. We also shipped those two global elements to all pages of WordPress.org. However, there’s more work to do within the header to improve the information architecture. This new design is just the first, small step to modernize and improve the site iteratively. Any further discussion on future redesigns will occur in the <a href=\"http://wordpress.slack.com\">#design channel on Slack</a>.</p>\n\n\n\n<figure class=\"wp-block-image alignfull size-full\"><img loading=\"lazy\" width=\"2560\" height=\"1605\" src=\"https://i1.wp.com/wordpress.org/news/files/2022/02/news_mobile_menu-scaled.jpg?resize=2560%2C1605&#038;ssl=1\" alt=\"\" class=\"wp-image-12263\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2022/02/news_mobile_menu-scaled.jpg?w=2560&amp;ssl=1 2560w, https://i1.wp.com/wordpress.org/news/files/2022/02/news_mobile_menu-scaled.jpg?resize=300%2C188&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2022/02/news_mobile_menu-scaled.jpg?resize=1024%2C642&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2022/02/news_mobile_menu-scaled.jpg?resize=768%2C482&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2022/02/news_mobile_menu-scaled.jpg?resize=1536%2C963&amp;ssl=1 1536w, https://i1.wp.com/wordpress.org/news/files/2022/02/news_mobile_menu-scaled.jpg?resize=2048%2C1284&amp;ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Take a look around and subscribe to WordPress News if you haven’t already. If you see something in the design that doesn’t look right, please submit an issue on <a href=\"https://github.com/WordPress/wporg-news-2021/\">GitHub</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"12244\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:58:\"\n		\n		\n		\n		\n		\n				\n		\n\n					\n										\n					\n		\n		\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"WP Briefing: Episode 24: Three Goals in 2022\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://wordpress.org/news/2022/02/episode-24-three-goals-in-2022/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 07 Feb 2022 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=12176\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:413:\"In episode 24 of the WordPress Briefing, the Project&#8217;s Executive Director reviews three big-picture goals for the year: Increased Gutenberg adoption, support of all open source alternatives, and stewarding the open source ethos. Have a question you&#8217;d like answered? You can submit them to wpbriefing@wordpress.org, either written or as a voice recording. Credits Editor:&#160;Dustin Hartzler [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2022/02/WP-Briefing-024.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Chloe Bringmann\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:9160:\"\n<p>In episode 24 of the WordPress Briefing, the Project&#8217;s Executive Director reviews three big-picture goals for the year: Increased Gutenberg adoption, support of all open source alternatives, and stewarding the open source ethos.</p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 id=\"credits\">Credits</h2>\n\n\n\n<ul><li>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a></li><li>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a></li><li>Production:&nbsp;<a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a></li><li>Song: Fearless First by Kevin MacLeod</li></ul>\n\n\n\n<h2 id=\"references\">References</h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/project/2022/01/21/big-picture-goals-2022/\">Big Picture Goals 2022</a></li><li><a href=\"https://make.wordpress.org/core/2022/01/26/preliminary-roadmap-for-6-0/\">Preliminary Roadmap for 6.0</a> (Gutenberg Phase 2)</li><li><a href=\"https://wordpress.org/news/2021/06/a-new-design-is-coming-to-wordpress-news/\">A New News Design</a></li><li><a href=\"https://wpmake.tumblr.com/\">Making WordPress</a>: Unofficial aggregator for all&nbsp;<a href=\"https://make.wordpress.org/\">Making WordPress blogs</a></li></ul>\n\n\n\n<h2 id=\"transcript\">Transcript</h2>\n\n\n\n<span id=\"more-12176\"></span>\n\n\n\n<h2 id=\"episode-24\">Episode 24</h2>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>00:00</p>\n\n\n\n<p>Hello everyone, and welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress open source project. Some insight into the community that supports it and get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy. Here we go!</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>01:07</p>\n\n\n\n<p>A couple of weeks ago, I published a post about the big picture goals for the WordPress project in 2022. As I was thinking through our planned releases for the year and looking out toward what would spell success for WordPress over the next three years, three things really lined up in both sets of answers for me.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>01:23</p>\n\n\n\n<p>I provided some detail on how we can work toward these goals in the post, which I will link for you in the show notes, but I also wanted to take some time to explain why I feel we have to work toward these goals this year. So these all build on one another. To refresh your memory of the three big focuses, they are one to drive adoption of the new editor in WordPress, support open source alternatives for site building necessities, and three, open source stewardship.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>01:52</p>\n\n\n\n<p>So the first one; is driving the adoption of the new WordPress editor. Early on in the start of the Gutenberg Project, folks could not go two days without hearing me talk about the phases of adoption and how those line up with the phases of Gutenberg, and who would need our support the most in each of those phases.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>02:09</p>\n\n\n\n<p>I have always believed that what we would be shipping at this point in our project would prove the plausible promise of what we were doing in phase one. That&#8217;s definitely what I&#8217;m seeing from what was shipped in 5.9, as well as what we plan to ship in May with 6.0. And the people who need the most support right now are absolutely our users, your clients, no matter whether they were not keeping up with WordPress developments or simply were waiting to see what all the fuss was about.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>02:37</p>\n\n\n\n<p>There will be people who look to you as someone who has been here a while to help them make sense of what they&#8217;re seeing. And what I find so exciting about this adoption, sort of, work in the WordPress project is that this is the time when we as practitioners of WordPress, no matter whether you are a designer or a developer or builder, business coach. This is the time when we get to guide others through the hardest parts of our learning processes.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>03:07</p>\n\n\n\n<p>The process of helping people to learn new technologies relies not only on your hard-won expertise but also on the belief that the future is worth fighting for. Enabling someone’s success is an investment in the future and investment for that person or for WordPress or your community. All investments are welcome here.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>03:28</p>\n\n\n\n<p>Fortunately, table stakes are just that you care. And speaking of future investments, the second focus is open source alternatives for site building necessities. So things like images, forms, stores, themes, etc. It literally just things you need to build a site. I would like to start by saying that I am completely aware of the fact that 99% of WordPress users will never care about open source freedoms and philosophies in the same way that WordPress maintainers and contributors care about open source freedoms and philosophies.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>04:04</p>\n\n\n\n<p>You could substitute the name of any other open source project right there, and the statement would still be true. And yet, I will always believe that people should have the rights and freedoms that open source brings to them even if they do not know they are there. And so it makes all the sense in the world to me that as a project and open source community, we should strive to make choosing Open Source as easy as possible.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>04:33</p>\n\n\n\n<p>And finally, open source stewardship is one of the focuses for this year. This one is obviously about supporting open source as a concept and maintaining WordPress as a project. But I also think that it is relevant to our current global circumstances. Open Source suddenly became very visible to the public eye last year following the Log4J vulnerability, and ever since then, I&#8217;ve been hearing consistent concern over how We make sure that WordPress is sustainable moving into the future. Fortunately, this is a topic that&#8217;s near and dear to my heart. And I have been delighted to see so many community members bringing that conversation to the forefront.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>05:14</p>\n\n\n\n<p>There is a lot that is done in the WordPress project to keep us from the tragedy of the commons. But that work honestly never ends. Not only does it not end, but as we get bigger, there is more and more that we can and should be doing to keep us around for the long term. And, of course, for the keen readers of my posts, there&#8217;s a bonus focus.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>05:39</p>\n\n\n\n<p>The bonus focus is, of course, that WordPress turns 20 years old next year. This year, we will also be seeing some preparatory work for that major milestone as well.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>05:56</p>\n\n\n\n<p>So that brings us today to our small list of big things. There is a redesign of the News Page coming. We&#8217;ve been talking about this over on make.wordpress.org/design for a bit since like June of last year or something. But it&#8217;s coming in the next few weeks. I&#8217;ll share a link to the GitHub repo in case anyone has any specific things that they see as they are reading through all of our many news stories that come out on that particular page. I think it&#8217;s beautiful, and I&#8217;m very excited to take a look at it.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>06:30</p>\n\n\n\n<p>The second thing is that planning is underway for WordPress 6.0; that release that we&#8217;re doing in May. I&#8217;ll add the project page link to the show notes. I&#8217;ve had a few raised hands for that release squad. But if you&#8217;re interested in participating in the release, I encourage you to keep an eye out on make.wordpress.org/core for updates and any news about how to get involved.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>06:53</p>\n\n\n\n<p>And my third thing is actually that, in general, there are a lot of opportunities to contribute right now. There are discussions about projects, goals, and dreams happening all over the place. I&#8217;ll link in the show notes below the unofficial project “firehose” where you can see all the headlines and quickly find discussions that might be interesting to you.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>07:18</p>\n\n\n\n<p>And that, my friends, is your small list of big things. Thank you for tuning in today for the WordPress Briefing. I&#8217;m your host Josepha Haden Chomphosy, and I&#8217;ll see you again in a couple of weeks.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"12176\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:57:\"\n		\n		\n		\n		\n		\n				\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"The Month in WordPress – January 2022\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2022/02/the-month-in-wordpress-january-2022/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 04 Feb 2022 19:41:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=12180\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:335:\"There are a few significant moments in the history of the WordPress project. January 2022 is one of them, with the release of WordPress 5.9! But that’s not all. Read on to learn more about the latest updates and achievements from the community. WordPress 5.9 Joséphine is here Meet WordPress 5.9 Joséphine. Named in honor [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Anjana Vasan\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:12751:\"\n<p>There are a few significant moments in the history of the WordPress project. January 2022 is one of them, with the release of WordPress 5.9! But that’s not all. Read on to learn more about the latest updates and achievements from the community.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2 id=\"wordpress-5-9-josephine-is-here\">WordPress 5.9 Joséphine is here</h2>\n\n\n\n<p class=\"has-text-align-center\"><img loading=\"lazy\" width=\"405\" height=\"274\" src=\"https://lh3.googleusercontent.com/Iq09sZdu0Npal6XWBF6Bbfqb8AWizWVPCUtCqxgU4T-1E3uWM1bmZ7cDEHA0RJlEaFTPN5jAAXwHfx-x52rIC2Gac55j96fhUSdFlHyEmFtooRM9_NmuLyRJ-_ujotnKAAYzBEBh\"></p>\n\n\n\n<p>Meet <a href=\"https://wordpress.org/news/2022/01/josephine/\">WordPress 5.9 Joséphine</a>. Named in honor of the acclaimed jazz singer, Joséphine Baker, this is one of the much-awaited releases. Version 5.9 brings full site editing to WordPress, among other exciting updates!<strong> </strong><a href=\"https://wordpress.org/download/\"><strong>Download WordPress 5.9</strong></a><strong> and try the new features! </strong><br><br>Check out the <a href=\"https://make.wordpress.org/core/2022/01/10/wordpress-5-9-field-guide/\">WordPress 5.9 Field Guide</a> to learn more. Lastly, everyone’s invited to participate in a retrospective of the <a href=\"https://make.wordpress.org/core/2022/01/27/wordpress-5-9-simone-retrospective/\">WordPress 5.9 Joséphine</a> release!</p>\n\n\n\n<blockquote class=\"wp-block-quote has-text-align-center\"><p><strong>Are you interested in contributing to WordPress core?</strong> Join the <a href=\"https://wordpress.slack.com/archives/C02RQBWTW\">#core</a> channel, follow the <a href=\"https://make.wordpress.org/core/\">Core Team blog</a>, and check out the <a href=\"https://make.wordpress.org/core/handbook/\">team handbook</a>. Also, don&#8217;t miss the Core Team’s weekly developer chat on Wednesdays at <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?hour=20&amp;min=00&amp;sec=0\">8 PM</a> UTC.</p></blockquote>\n\n\n\n<h2 id=\"gutenberg-releases-versions-12-3-12-4-and-12-5-are-here\">Gutenberg releases: Versions 12.3, 12.4, and 12.5 are here</h2>\n\n\n\n<p>The Core Team launched three new versions of Gutenberg since last month’s edition of the Month in WordPress.</p>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2022/02/03/whats-new-in-gutenberg-12-5-february-2nd/\">Gutenberg 12.5</a> brings global styles variations and Query Loop block enhancements, along with the Code Editor view to the Side Editor. Moreover, inserting new buttons is now easier than ever!</li><li><a href=\"https://make.wordpress.org/core/2022/01/19/whats-new-in-gutenberg-12-4-19-january/\">Gutenberg 12.4</a> was released on January 19, 2022. This version includes accessibility improvements, suggestions for assigning categories, keyboard shortcuts for the Site Editor, and more.&nbsp;</li><li><a href=\"https://make.wordpress.org/core/2022/01/05/whats-new-in-gutenberg-12-3-5-january/\">Gutenberg 12.3</a> was released on January 5, 2022. This release brings new blocks, like the Author Name, Comments Next Page, and Comments Previous Page blocks, and many other cool updates!</li></ul>\n\n\n\n<blockquote class=\"wp-block-quote has-text-align-center\"><p><strong>Want to get involved in developing Gutenberg? </strong>Follow <a href=\"https://make.wordpress.org/core/\">the Core Team blog</a>, contribute to Gutenberg on <a href=\"https://github.com/WordPress/gutenberg/\">GitHub</a>, and join the <a href=\"https://wordpress.slack.com/archives/C02QB2JS7\">#core-editor</a> channel in the <a href=\"https://make.wordpress.org/chat/\">Make WordPress Slack</a>. Follow the <a href=\"https://make.wordpress.org/core/tag/gutenberg-new/\">#gutenberg-new</a> tag for details on the latest updates.</p></blockquote>\n\n\n\n<h2 id=\"team-updates-proposals-announcements-and-more-for-2022\">Team updates: Proposals, announcements, and more for 2022</h2>\n\n\n\n<ul><li>Executive Director Josepha Haden<a href=\"https://make.wordpress.org/core/2022/01/27/proposal-2022-major-release-timing/\"> shared a proposal</a> on 2022 major release timing. </li><li>In the <a href=\"https://wordpress.org/news/2022/02/episode-24-three-goals-in-2022/\">latest episode of WP Briefing</a>, Josepha Haden Comphosy reviews the <a href=\"https://make.wordpress.org/updates/2022/01/21/our-three-big-ideas-for-2022/\">three major areas of focus</a> for the WordPress project in 2022. She also shared the <a href=\"https://make.wordpress.org/project/2022/01/21/big-picture-goals-2022/\">big-picture goals for 2022</a>.</li><li>The Core Team <a href=\"https://make.wordpress.org/core/2022/01/31/ensuring-proper-attribution-for-contributions-to-wordpress-on-github/\">made a proposal</a> regarding proper attributions for contributions to WordPress on GitHub. Although the proposal has since then been withdrawn, it&#8217;s still a discussion and comments are welcome.</li><li>Check out the <a href=\"https://make.wordpress.org/core/2022/01/26/preliminary-roadmap-for-6-0/\">preliminary roadmap</a> for WordPress 6.0 (Gutenberg Phase Two). </li><li>Core Team members <a href=\"https://make.wordpress.org/core/2022/01/26/proposed-improvements-to-the-core-editor-chat-agenda-and-format/\">proposed improvements</a> to the Core Editor chat agenda and format. </li><li>The Accessibility Team made some <a href=\"https://make.wordpress.org/accessibility/2022/01/22/accessibility-team-meeting-notes-january-21-2022/\">major goal proposals for WordPress 6.0</a>.</li><li>The Polyglots Team shared a proposal for a <a href=\"https://make.wordpress.org/polyglots/2022/02/01/proposal-milestone-template-for-polyglots-locale-teams/\">milestone template for polyglots locale teams</a>.</li><li>The <a href=\"https://make.wordpress.org/polyglots/2022/01/20/polyglots-monthly-newsletter-january-2022/\">January 2022 edition</a> of the Polyglots monthly newsletter is out!</li><li>The Community Team shared an <a href=\"https://make.wordpress.org/community/2022/02/03/open-invitation-diverse-speaker-training-group-wpdiversity-zoom-call/\">open invitation for the Diverse Speaker Training group</a> Zoom call.</li><li>Although the WordPress Photo Directory hasn’t fully launched yet, you can now <a href=\"https://wordpress.org/photos/submit/\">submit your images</a>. You can also contribute in other ways, as there’s <a href=\"https://make.wordpress.org/meta/2022/01/13/wordpress-photo-directory-call-for-volunteers/\">currently a call for volunteers</a>.</li><li>Openverse has now a redesigned user interface and includes support for audio files. Check out <a href=\"https://make.wordpress.org/openverse/2022/01/25/everything-you-need-to-know-about-openverse-and-the-wordpress-photo-directory/\">this post</a> to learn what&#8217;s new.</li><li>The Community Team will be hosting <a href=\"https://make.wordpress.org/community/2022/02/02/community-team-goals-2022-open-discussion-sessions/\">open discussion sessions</a> to collaborate on its goals for 2022. </li><li>The January 2022 edition of the <a href=\"https://make.wordpress.org/community/2022/01/14/meetup-organizer-newsletter-january-2022/\">Meetup Organizer Newsletter</a> was published.</li><li>The Community Team shared a <a href=\"https://make.wordpress.org/community/2022/01/10/proposal-mandatory-safety-measures-for-in-person-wordpress-events-in-2022/\">proposal for mandatory safety measures</a> for in-person WordPress events taking place this year.</li><li>The Training Team published its <a href=\"https://make.wordpress.org/training/2022/02/02/february-2022-team-sprint/\">February 2022 Team Sprint</a>.</li></ul>\n\n\n\n<blockquote class=\"wp-block-quote has-text-align-center\"><p><strong>Take the course on Learn WordPress to </strong><a href=\"https://learn.wordpress.org/course/simple-site-design-with-full-site-editing/\"><strong>learn about the full site editing features</strong></a><strong> in WordPress 5.9!&nbsp; Also, help spread the word about </strong><a href=\"https://learn.wordpress.org/social-learning/\"><strong>social learning spaces</strong></a><strong> on </strong><a href=\"https://twitter.com/WordPress/status/1487180438347128836\"><strong>Twitter</strong></a><strong>!</strong></p></blockquote>\n\n\n\n<h2 id=\"feedback-testing-requests-share-your-thoughts-on-wordpress-5-9-josephine\">Feedback/Testing requests: Share your thoughts on WordPress 5.9 Joséphine</h2>\n\n\n\n<ul><li>There’s currently a call for testing <a href=\"https://make.wordpress.org/mobile/2022/01/27/call-for-testing-wordpress-for-android-19-1/\">WordPress for Android 19.1</a> and <a href=\"https://make.wordpress.org/mobile/2022/01/24/call-for-testing-wordpress-for-ios-19-1/\">iOS 19.1</a>, along with <a href=\"https://make.wordpress.org/mobile/2022/01/10/call-for-testing-wordpress-for-android-19-0/\">Android 19.0</a> and iOS 19.0.</li></ul>\n\n\n\n<blockquote class=\"wp-block-quote has-text-align-center\"><p><a href=\"https://forms.gle/Hf7E2JJokfnNLprG7\"><strong>Share your feedback</strong></a><strong> on the release of WordPress 5.9 Joséphine.</strong></p></blockquote>\n\n\n\n<h2 id=\"wordcamp-europe-2022-wants-volunteers-photographers-and-media-partners\">WordCamp Europe 2022 wants volunteers, photographers and media partners</h2>\n\n\n\n<ul><li>WordCamp Birmingham, Alabama has been postponed until April or May.</li><li>The WordPress Foundation <a href=\"https://wordpressfoundation.org/news/2022/what-is-the-wordpress-foundation-and-why-does-it-exist/\">published a post</a> explaining more about the nonprofit’s mission and why it exists.</li><li>Don’t miss the following upcoming WordCamps: <ul><li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1e8-1f1ff.png\" alt=\"??\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://prague.wordcamp.org/2022/\">WordCamp Prague</a>, Switzerland on February  26, 2022 (online)</li><li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1e8-1f1ed.png\" alt=\"??\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /><a href=\"https://geneve.wordcamp.org/2022/\"> WordCamp Genève</a>, Switzerland on April 9, 2022 (in person)</li><li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ec-1f1f7.png\" alt=\"??\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://central.wordcamp.org/wordcamps/wordcamp-athens-attica-greece-2022/\">WordCamp Athens</a>, Greece between April 9 and 10, 2022 (in person)</li><li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1e6-1f1f9.png\" alt=\"??\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://vienna.wordcamp.org/2022/\">WordCamp Vienna</a>, Austria from April 23 to 24, 2022 (in person)</li><li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ea-1f1fa.png\" alt=\"??\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://europe.wordcamp.org/2022/\">WordCamp Europe</a> in Porto, Portugal from June 2 to 4, 2022 (in person)</li><li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1fa-1f1f8.png\" alt=\"??\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://us.wordcamp.org/2022/\">WordCamp US</a> in San Diego, CA USA from September 9-11, 2022 (in person)</li></ul></li></ul>\n\n\n\n<blockquote class=\"wp-block-quote has-text-align-center\"><p><strong>WordCamp Europe 2022 opened a new call for </strong><a href=\"https://europe.wordcamp.org/2022/join-the-wceu-volunteers-team/\"><strong>volunteers</strong></a><strong>, </strong><a href=\"https://europe.wordcamp.org/2022/capture-wceu-on-camera/\"><strong>photographers</strong></a><strong>, and </strong><a href=\"https://europe.wordcamp.org/2022/join-us-as-a-media-partner/\"><strong>media partners</strong></a><strong>!</strong></p></blockquote>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p><strong><em>Have a story that we could include in the next ‘Month in WordPress’ post? Let us know by filling out </em></strong><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><strong><em>this form</em></strong></a><strong><em>.</em></strong></p>\n\n\n\n<p><em>The following folks contributed to January 2022’s Month in WordPress: </em><a href=\'https://profiles.wordpress.org/anjanavasan/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>anjanavasan</a><em> </em><a href=\'https://profiles.wordpress.org/harishanker/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>harishanker</a><em> </em><a href=\'https://profiles.wordpress.org/rmartinezduque/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>rmartinezduque</a><em> </em><a href=\"https://profiles.wordpress.org/lmurillom/\">@lmurillom</a> <em><a href=\"https://profiles.wordpress.org/webcommsat/\">@webcommsat</a> and <a href=\"https://profiles.wordpress.org/nalininonstopnewsuk/\">@nalininonstopnewsuk</a></em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"12180\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"WordPress 5.9 “Josephine”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"https://wordpress.org/news/2022/01/josephine/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 25 Jan 2022 16:17:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"5.9\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=12089\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"WordPress 5.9 is available thanks to more than 600 contributors who helped make it happen.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:64520:\"\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"1024\" height=\"694\" src=\"https://i1.wp.com/wordpress.org/news/files/2022/01/5-9-inline-v2.png?resize=1024%2C694&#038;ssl=1\" alt=\"\" class=\"wp-image-12139\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2022/01/5-9-inline-v2.png?resize=1024%2C694&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2022/01/5-9-inline-v2.png?resize=300%2C203&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2022/01/5-9-inline-v2.png?resize=768%2C521&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2022/01/5-9-inline-v2.png?resize=1536%2C1042&amp;ssl=1 1536w, https://i1.wp.com/wordpress.org/news/files/2022/01/5-9-inline-v2.png?resize=2048%2C1389&amp;ssl=1 2048w, https://i1.wp.com/wordpress.org/news/files/2022/01/5-9-inline-v2.png?w=3000&amp;ssl=1 3000w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h2 id=\"welcome-to-josephine\">Welcome to Joséphine!</h2>\n\n\n\n<p>Introducing 5.9, “Joséphine”. Named in honor of acclaimed international jazz singer Joséphine Baker, this latest, most versatile WordPress release is here: <a href=\"https://wordpress.org/download/\">download it</a> or update it directly from your dashboard. <br><br>As a lifelong civil rights campaigner, Joséphine Baker believed that all people could live in harmony together, just as different instruments in a jazz band blend together to make a whole piece. Turn on a playlist from your favorite music service and enjoy her famous renditions of “You are the greatest love”, “Sans Amour”, and “Love is a Dreamer” as you discover all the features of this brand-new WordPress release. </p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2 id=\"full-site-editing-is-here\">Full site editing is here.</h2>\n\n\n\n<p>It puts you in control of your whole site, right in the WordPress Admin.</p>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" width=\"1204\" height=\"903\" src=\"https://i2.wp.com/wordpress.org/news/files/2022/01/5-9-release-1.png?resize=1204%2C903&#038;ssl=1\" alt=\"\" class=\"wp-image-12101\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2022/01/5-9-release-1.png?w=1204&amp;ssl=1 1204w, https://i2.wp.com/wordpress.org/news/files/2022/01/5-9-release-1.png?resize=300%2C225&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2022/01/5-9-release-1.png?resize=1024%2C768&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2022/01/5-9-release-1.png?resize=768%2C576&amp;ssl=1 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h3 id=\"say-hello-to-twenty-twenty-two\">Say hello to Twenty Twenty-Two.</h3>\n\n\n\n<p>And say hello to the first default block theme in the history of WordPress. This is more than just a new default theme. It’s a brand-new way to work with WordPress themes.</p>\n\n\n\n<p><a href=\"https://wordpress.org/support/article/block-themes/\">Block themes</a> put a wide array of visual choices directly in your hands, from color schemes and font combinations to page templates and image filters, all from the <a href=\"https://wordpress.org/support/article/site-editor/\">Site Editor</a>. So in one place, you can give Twenty Twenty-Two the same look and feel as your organization’s other materials—or take your site’s look in another direction.</p>\n\n\n\n<p>You already have the Twenty Twenty-Two theme—it came installed with WordPress 5.9. You will find it with your other installed themes.</p>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" width=\"1204\" height=\"903\" src=\"https://i2.wp.com/wordpress.org/news/files/2022/01/5-9-release-2.png?resize=1204%2C903&#038;ssl=1\" alt=\"\" class=\"wp-image-12102\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2022/01/5-9-release-2.png?w=1204&amp;ssl=1 1204w, https://i2.wp.com/wordpress.org/news/files/2022/01/5-9-release-2.png?resize=300%2C225&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2022/01/5-9-release-2.png?resize=1024%2C768&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2022/01/5-9-release-2.png?resize=768%2C576&amp;ssl=1 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h3 id=\"your-personal-paintbox-awaits\">Your personal paintbox awaits</h3>\n\n\n\n<p>Twenty Twenty-Two is not the only theme built for full site editing. More block themes are in the Themes directory, and the number will grow.&nbsp;</p>\n\n\n\n<p>When you use any of those new themes, you no longer need the Customizer. Instead, you have all the power of the Styles interface inside the Site Editor. Just as in Twenty Twenty-Two, you build your site’s look and feel there, with the tools you need for the job in a fluid interface that practically comes alive in your hands.</p>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" width=\"1204\" height=\"903\" src=\"https://i0.wp.com/wordpress.org/news/files/2022/01/5-9-release-3.png?resize=1204%2C903&#038;ssl=1\" alt=\"\" class=\"wp-image-12103\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2022/01/5-9-release-3.png?w=1204&amp;ssl=1 1204w, https://i0.wp.com/wordpress.org/news/files/2022/01/5-9-release-3.png?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2022/01/5-9-release-3.png?resize=1024%2C768&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2022/01/5-9-release-3.png?resize=768%2C576&amp;ssl=1 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h3 id=\"the-navigation-block\">The Navigation block</h3>\n\n\n\n<p>Blocks come to site navigation, the heart of user experience.</p>\n\n\n\n<p>The new Navigation block gives you the power to choose: an always-on responsive menu or one that adapts to your user’s screen size. And your choices are remembered! In 5.9, the block saves menus as custom post types, which get saved to the database.</p>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 id=\"more-improvements-and-updates\">More improvements and updates</h2>\n\n\n\n<p>Do you love to blog? New tweaks to the publishing flow help you say more, faster.</p>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" width=\"1204\" height=\"903\" src=\"https://i1.wp.com/wordpress.org/news/files/2022/01/5-9-release-5.png?resize=1204%2C903&#038;ssl=1\" alt=\"\" class=\"wp-image-12105\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2022/01/5-9-release-5.png?w=1204&amp;ssl=1 1204w, https://i1.wp.com/wordpress.org/news/files/2022/01/5-9-release-5.png?resize=300%2C225&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2022/01/5-9-release-5.png?resize=1024%2C768&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2022/01/5-9-release-5.png?resize=768%2C576&amp;ssl=1 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h3 id=\"better-block-controls\">Better block controls</h3>\n\n\n\n<p>WordPress 5.9 features new typography tools, flexible layout controls, and finer control of details like spacing, borders, and more—to help you get not just the look, but the polish that says you care about details.</p>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" width=\"1204\" height=\"903\" src=\"https://i2.wp.com/wordpress.org/news/files/2022/01/5-9-release-4.png?resize=1204%2C903&#038;ssl=1\" alt=\"\" class=\"wp-image-12104\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2022/01/5-9-release-4.png?w=1204&amp;ssl=1 1204w, https://i2.wp.com/wordpress.org/news/files/2022/01/5-9-release-4.png?resize=300%2C225&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2022/01/5-9-release-4.png?resize=1024%2C768&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2022/01/5-9-release-4.png?resize=768%2C576&amp;ssl=1 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h3 id=\"the-power-of-patterns\">The power of patterns</h3>\n\n\n\n<p>The WordPress Pattern Directory is the home of a wide range of block patterns built to save you time and add to your site&#8217;s functionality. And you can edit them as you see fit. Need something different in the header or footer for your theme? Swap it out with a new one in a few clicks.</p>\n\n\n\n<p>With a nearly full-screen view that draws you in to see fine details, the Pattern Explorer makes it easy to compare patterns and choose the one your users need.</p>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" width=\"1204\" height=\"903\" src=\"https://i2.wp.com/wordpress.org/news/files/2022/01/5-9-release-6.png?resize=1204%2C903&#038;ssl=1\" alt=\"\" class=\"wp-image-12106\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2022/01/5-9-release-6.png?w=1204&amp;ssl=1 1204w, https://i2.wp.com/wordpress.org/news/files/2022/01/5-9-release-6.png?resize=300%2C225&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2022/01/5-9-release-6.png?resize=1024%2C768&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2022/01/5-9-release-6.png?resize=768%2C576&amp;ssl=1 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h3 id=\"a-revamped-list-view\">A revamped List View</h3>\n\n\n\n<p>In 5.9, the List View lets you drag and drop your content exactly where you want it. Managing complex documents is easier, too: simple controls let you expand and collapse sections as you build your site—and add HTML anchors to your blocks to help users get around the page.</p>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" width=\"1204\" height=\"903\" src=\"https://i2.wp.com/wordpress.org/news/files/2022/01/5-9-release-7.png?resize=1204%2C903&#038;ssl=1\" alt=\"\" class=\"wp-image-12107\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2022/01/5-9-release-7.png?w=1204&amp;ssl=1 1204w, https://i2.wp.com/wordpress.org/news/files/2022/01/5-9-release-7.png?resize=300%2C225&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2022/01/5-9-release-7.png?resize=1024%2C768&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2022/01/5-9-release-7.png?resize=768%2C576&amp;ssl=1 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h3 id=\"a-better-gallery-block\">A better Gallery block</h3>\n\n\n\n<p>Treat every image in a Gallery Block the same way you would treat it in the Image Block.</p>\n\n\n\n<p>Style every image in your gallery differently, or make them all the same, except for one or two. Or change the layout with drag-and-drop.</p>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2 id=\"wordpress-5-9-for-developers\">WordPress 5.9 for developers</h2>\n\n\n\n<h3 id=\"theme-json-for-child-themes\">Theme.json for child themes</h3>\n\n\n\n<p>In 5.9, theme.json supports child themes. That means your users can build a child theme right in the WordPress Admin, without writing a single line of code.&nbsp;</p>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2022/01/04/block-themes-a-new-way-to-build-themes-in-wordpress-5-9/\">This dev note</a> has all the details. Take a look!</p>\n\n\n\n<h3 id=\"block-level-locking\">Block-level locking</h3>\n\n\n\n<p>Now you can lock any block (or a few of them) in a pattern, just by <a href=\"https://make.wordpress.org/core/2022/01/08/locking-blocks-in-wordpress-5-9/\">adding a lock attribute to its settings in block.json</a>—leaving the rest of the pattern free for users to adapt to their content.&nbsp;</p>\n\n\n\n<h3 id=\"multiple-stylesheets-in-a-block\">Multiple stylesheets in a block</h3>\n\n\n\n<p>Now you can register more than one stylesheet per block, which lets a given block load only the styles its markup requests, and not a whole sheet. Read the details in this <a href=\"https://make.wordpress.org/core/2021/12/15/using-multiple-stylesheets-per-block/\">dev note</a>.</p>\n\n\n\n<h3 id=\"a-refactored-gallery-block\">A refactored Gallery Block</h3>\n\n\n\n<p>The changes to the Gallery Block listed above are the result of near-complete refactor. Have you built a plugin or theme on the Gallery Block functionality? Be sure you read this <a href=\"https://make.wordpress.org/core/2021/08/20/gallery-block-refactor-dev-note/\">dev note</a>. It tells you what you need to do for compatibility.</p>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h3 id=\"learn-more-about-the-new-features-in-5-9\">Learn more about the new features in 5.9</h3>\n\n\n\n<p>Want to dive into 5.9 but don’t know where to start? Check out this free course about <a href=\"https://learn.wordpress.org/course/simple-site-design-with-full-site-editing/\">Simple Site Design</a> from <a href=\"https://learn.wordpress.org/\">Learn WordPress</a>. There are a variety of learning materials including short how-to video tutorials and resources on new features in WordPress 5.9, with much more planned.</p>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h3 id=\"check-the-field-guide-for-more\">Check the Field Guide for more!</h3>\n\n\n\n<p>Check out the latest version of the WordPress Field Guide. It has lots of useful information with links to detailed developer notes to support you building in WordPress for everyone you serve. <a href=\"https://make.wordpress.org/core/2022/01/10/wordpress-5-9-field-guide/\">WordPress 5.9 Field Guide</a>.</p>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 id=\"the-squad\"><strong>The Squad</strong></h2>\n\n\n\n<p>The WordPress 5.9 release was led by <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a>, and supported by this highly enthusiastic release squad:</p>\n\n\n\n<ul><li>Release Lead: <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a></li><li>Core Tech and Release Coordinator: <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a></li><li>Triage Leads: <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a> and <a href=\"https://profiles.wordpress.org/chaion07/\">Ahmed Chaion</a></li><li>Editor Tech: <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a> and <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a></li><li>Theme Leads: <a href=\"https://profiles.wordpress.org/kjellr/\">Kjell Reigstad</a> and <a href=\"https://profiles.wordpress.org/jffng/\">Jeff Ong</a></li><li>Technical Writer: <a href=\"https://profiles.wordpress.org/psykro/\">Jonathan Bossenger</a></li><li>Documentation Leads: <a href=\"https://profiles.wordpress.org/mkaz/\">Marcus Kazmierczak</a> and <a href=\"https://profiles.wordpress.org/milana_cap/\">Milana Cap</a></li><li>Marketing &amp; Communications Leads: <a href=\"https://profiles.wordpress.org/marybaum/\">Mary Baum</a>, <a href=\"https://profiles.wordpress.org/webcommsat/\">Abha Thakor</a>, and <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a></li><li>Test Leads: <a href=\"https://profiles.wordpress.org/boniu91/\">Piotrek Boniu</a> and <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a></li></ul>\n\n\n\n<p>WordPress 5.9 also reflects the hard work of 624 generous volunteer contributors. Collaboration occurred on <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;milestone=5.9&amp;group=component&amp;col=id&amp;col=summary&amp;col=status&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=priority&amp;order=priority\">370 tickets on Trac</a> and more than <a href=\"https://github.com/WordPress/gutenberg/compare/v10.8.0...v11.9.0\">1900 pull requests on GitHub</a>.</p>\n\n\n<p class=\"is-style-wporg-props-long alignfull\"><a href=\"https://profiles.wordpress.org/2linctools/\">2linctools</a> · <a href=\"https://profiles.wordpress.org/aaroncampbell/\">Aaron D. Campbell</a> · <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a> · <a href=\"https://profiles.wordpress.org/aaronrobertshaw/\">Aaron Robertshaw</a> · <a href=\"https://profiles.wordpress.org/abesell132/\">abesell132</a> · <a href=\"https://profiles.wordpress.org/webcommsat/\">Abha Thakor</a> · <a href=\"https://profiles.wordpress.org/acosmin/\">acosmin</a> · <a href=\"https://profiles.wordpress.org/wpmudev-support8/\">Adam - WPMU DEV Support</a> · <a href=\"https://profiles.wordpress.org/bosconiandynamics/\">Adam Bosco</a> · <a href=\"https://profiles.wordpress.org/adam3128/\">Adam Morgan</a> · <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a> · <a href=\"https://profiles.wordpress.org/zieladam/\">Adam Zielinski</a> · <a href=\"https://profiles.wordpress.org/addiestavlo/\">Addie</a> · <a href=\"https://profiles.wordpress.org/aadilali/\">Adil Ali</a> · <a href=\"https://profiles.wordpress.org/aduth/\">aduth</a> · <a href=\"https://profiles.wordpress.org/aezazshekh/\">Aezaz Shekh</a> · <a href=\"https://profiles.wordpress.org/chaion07/\">Ahmed Chaion</a> · <a href=\"https://profiles.wordpress.org/ajotka/\">ajotka</a> · <a href=\"https://profiles.wordpress.org/soniakash/\">Akash Soni</a> · <a href=\"https://profiles.wordpress.org/wildworks/\">Aki Hamano</a> · <a href=\"https://profiles.wordpress.org/atachibana/\">Akira Tachibana</a> · <a href=\"https://profiles.wordpress.org/schlessera/\">Alain Schlesser</a> · <a href=\"https://profiles.wordpress.org/alanjacobmathew/\">Alan Jacob Mathew</a> · <a href=\"https://profiles.wordpress.org/aljullu/\">Albert Juh&#233; Lluveras</a> · <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a> · <a href=\"https://profiles.wordpress.org/ajlende/\">Alex Lende</a> · <a href=\"https://profiles.wordpress.org/alexvorn2/\">Alexandru Vornicescu</a> · <a href=\"https://profiles.wordpress.org/alexeydemidov/\">alexeydemidov</a> · <a href=\"https://profiles.wordpress.org/alexislloyd/\">Alexis Lloyd</a> · <a href=\"https://profiles.wordpress.org/alexstine/\">alexstine</a> · <a href=\"https://profiles.wordpress.org/algala/\">AlGala</a> · <a href=\"https://profiles.wordpress.org/aliakseyenkaihar/\">aliakseyenkaihar</a> · <a href=\"https://profiles.wordpress.org/firewatch/\">allilevine</a> · <a href=\"https://profiles.wordpress.org/almendron/\">almendron</a> · <a href=\"https://profiles.wordpress.org/amandariu/\">Amanda Riu</a> · <a href=\"https://profiles.wordpress.org/anandau14/\">Anand Upadhyay</a> · <a href=\"https://profiles.wordpress.org/nosolosw/\">Andr&#233;</a> · <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a> · <a href=\"https://profiles.wordpress.org/andraganescu/\">Andrei Draganescu</a> · <a href=\"https://profiles.wordpress.org/nacin/\">Andrew Nacin</a> · <a href=\"https://profiles.wordpress.org/anevins/\">Andrew Nevins</a> · <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a> · <a href=\"https://profiles.wordpress.org/andrewserong/\">Andrew Serong</a> · <a href=\"https://profiles.wordpress.org/oandregal/\">André</a> · <a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a> · <a href=\"https://profiles.wordpress.org/apeatling/\">Andy Peatling</a> · <a href=\"https://profiles.wordpress.org/andy-schmidt/\">Andy Schmidt</a> · <a href=\"https://profiles.wordpress.org/andynick/\">andynick</a> · <a href=\"https://profiles.wordpress.org/la-geek/\">Angelika Reisiger</a> · <a href=\"https://profiles.wordpress.org/anjanavasan/\">Anjana Vasan</a> · <a href=\"https://profiles.wordpress.org/ankit-k-gupta/\">Ankit K Gupta</a> · <a href=\"https://profiles.wordpress.org/ankitmaru/\">Ankit Panchal</a> · <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a> · <a href=\"https://profiles.wordpress.org/antpb/\">Anthony Burchell</a> · <a href=\"https://profiles.wordpress.org/anthonyeden/\">Anthony Eden</a> · <a href=\"https://profiles.wordpress.org/paranoia1906/\">Anthony Ledesma</a> · <a href=\"https://profiles.wordpress.org/antonvlasenko/\">Anton Vlasenko</a> · <a href=\"https://profiles.wordpress.org/antonisme/\">Antonis Lilis</a> · <a href=\"https://profiles.wordpress.org/arena/\">arena</a> · <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a> · <a href=\"https://profiles.wordpress.org/madeinua/\">ArteMa</a> · <a href=\"https://profiles.wordpress.org/arthur791004/\">Arthur Chu</a> · <a href=\"https://profiles.wordpress.org/ashfame/\">Ashfame</a> · <a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a> · <a href=\"https://profiles.wordpress.org/baelx/\">baelx</a> · <a href=\"https://profiles.wordpress.org/allerune/\">Bartlomiej</a> · <a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a> · <a href=\"https://profiles.wordpress.org/beaulebens/\">Beau Lebens</a> · <a href=\"https://profiles.wordpress.org/bedas/\">Beda</a> · <a href=\"https://profiles.wordpress.org/scruffian/\">Ben Dwyer</a> · <a href=\"https://profiles.wordpress.org/utz119/\">Benachi</a> · <a href=\"https://profiles.wordpress.org/benitolopez/\">benitolopez</a> · <a href=\"https://profiles.wordpress.org/rainbowgeek/\">Benjamin Denis</a> · <a href=\"https://profiles.wordpress.org/benjamingosset/\">Benjamin Gosset</a> · <a href=\"https://profiles.wordpress.org/benjaminanakena/\">benjamin.anakena</a> · <a href=\"https://profiles.wordpress.org/bernhard-reiter/\">Bernhard Reiter</a> · <a href=\"https://profiles.wordpress.org/bijayyadav/\">Bijay Yadav</a> · <a href=\"https://profiles.wordpress.org/binarykitten/\">BinaryKitten</a> · <a href=\"https://profiles.wordpress.org/binarymoon/\">binarymoon</a> · <a href=\"https://profiles.wordpress.org/birgire/\">Birgir Erlendsson (birgire)</a> · <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a> · <a href=\"https://profiles.wordpress.org/blogaid/\">BlogAid</a> · <a href=\"https://profiles.wordpress.org/bobbingwide/\">bobbingwide</a> · <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a> · <a href=\"https://profiles.wordpress.org/bjorsch/\">Brad Jorsch</a> · <a href=\"https://profiles.wordpress.org/bradparbs/\">Brad Parbs</a> · <a href=\"https://profiles.wordpress.org/bradleyt/\">Bradley Taylor</a> · <a href=\"https://profiles.wordpress.org/kraftbj/\">Brandon Kraft</a> · <a href=\"https://profiles.wordpress.org/bravokeyl/\">bravokeyl</a> · <a href=\"https://profiles.wordpress.org/bgoewert/\">Brennan Goewert</a> · <a href=\"https://profiles.wordpress.org/bgardner/\">Brian Gardner</a> · <a href=\"https://profiles.wordpress.org/rzen/\">Brian Richards</a> · <a href=\"https://profiles.wordpress.org/bronsonquick/\">bronsonquick</a> · <a href=\"https://profiles.wordpress.org/ribaricplusplus/\">Bruno Ribaric</a> · <a href=\"https://profiles.wordpress.org/brylie/\">Brylie Christopher Oxley</a> · <a href=\"https://profiles.wordpress.org/icaleb/\">Caleb Burks</a> · <a href=\"https://profiles.wordpress.org/calebwoodbridge/\">calebwoodbridge</a> · <a href=\"https://profiles.wordpress.org/carepsules/\">carepsules</a> · <a href=\"https://profiles.wordpress.org/carike/\">Carike</a> · <a href=\"https://profiles.wordpress.org/cbravobernal/\">Carlos Bravo</a> · <a href=\"https://profiles.wordpress.org/carlosgprim/\">Carlos Garcia</a> · <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a> · <a href=\"https://profiles.wordpress.org/cdyerkes/\">cdyerkes</a> · <a href=\"https://profiles.wordpress.org/ceyhun0/\">Ceyhun Ozugur</a> · <a href=\"https://profiles.wordpress.org/shireling/\">Chad Chadbourne</a> · <a href=\"https://profiles.wordpress.org/critterverse/\">Channing Ritter</a> · <a href=\"https://profiles.wordpress.org/chiaki/\">Chiaki</a> · <a href=\"https://profiles.wordpress.org/chintan1896/\">Chintan hingrajiya</a> · <a href=\"https://profiles.wordpress.org/chipsnyder/\">Chip Snyder</a> · <a href=\"https://profiles.wordpress.org/cbringmann/\">Chloe Bringmann</a> · <a href=\"https://profiles.wordpress.org/chouby/\">Chouby</a> · <a href=\"https://profiles.wordpress.org/cklosows/\">Chris Klosowski</a> · <a href=\"https://profiles.wordpress.org/chrisvanpatten/\">Chris Van Patten</a> · <a href=\"https://profiles.wordpress.org/chriscct7/\">chriscct7</a> · <a href=\"https://profiles.wordpress.org/christianztamayo/\">Christian Tamayo</a> · <a href=\"https://profiles.wordpress.org/amethystanswers/\">Christina Workman</a> · <a href=\"https://profiles.wordpress.org/vimes1984/\">Christopher Churchill</a> · <a href=\"https://profiles.wordpress.org/clucasrowlands/\">clucasrowlands</a> · <a href=\"https://profiles.wordpress.org/costdev/\">Colin Stewart</a> · <a href=\"https://profiles.wordpress.org/callye/\">Collieth Clarke</a> · <a href=\"https://profiles.wordpress.org/collizo4sky/\">Collins Agbonghama</a> · <a href=\"https://profiles.wordpress.org/copons/\">Copons</a> · <a href=\"https://profiles.wordpress.org/coreyw/\">Corey</a> · <a href=\"https://profiles.wordpress.org/cr0ybot/\">Cory Hughart</a> · <a href=\"https://profiles.wordpress.org/courane01/\">Courtney Robertson</a> · <a href=\"https://profiles.wordpress.org/craigfrancis/\">craigfrancis</a> · <a href=\"https://profiles.wordpress.org/mitogh/\">Crisoforo Gaspar</a> · <a href=\"https://profiles.wordpress.org/littlebigthing/\">Csaba (LittleBigThings)</a> · <a href=\"https://profiles.wordpress.org/davidszabo/\">D&#225;vid Szab&#243;</a> · <a href=\"https://profiles.wordpress.org/daisyo/\">Daisy Olsen</a> · <a href=\"https://profiles.wordpress.org/colorful-tones/\">Damon Cook</a> · <a href=\"https://profiles.wordpress.org/danfarrow/\">Dan Farrow</a> · <a href=\"https://profiles.wordpress.org/dansoschin/\">Dan Soschin</a> · <a href=\"https://profiles.wordpress.org/danielbachhuber/\">Daniel Bachhuber</a> · <a href=\"https://profiles.wordpress.org/danielpost/\">Daniel Post</a> · <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a> · <a href=\"https://profiles.wordpress.org/chthnc/\">Daniel Shaw</a> · <a href=\"https://profiles.wordpress.org/danieldudzic/\">danieldudzic</a> · <a href=\"https://profiles.wordpress.org/mte90/\">Daniele Scasciafratte</a> · <a href=\"https://profiles.wordpress.org/darerodz/\">darerodz</a> · <a href=\"https://profiles.wordpress.org/dariak/\">Daria</a> · <a href=\"https://profiles.wordpress.org/daschmi/\">Daschmi</a> · <a href=\"https://profiles.wordpress.org/datagutten/\">datagutten</a> · <a href=\"https://profiles.wordpress.org/datainterlock/\">datainterlock</a> · <a href=\"https://profiles.wordpress.org/davecpage/\">Dave Page</a> · <a href=\"https://profiles.wordpress.org/davidanderson/\">David Anderson</a> · <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a> · <a href=\"https://profiles.wordpress.org/davidbinda/\">David Biňovec</a> · <a href=\"https://profiles.wordpress.org/dpcalhoun/\">David Calhoun</a> · <a href=\"https://profiles.wordpress.org/dgwyer/\">David Gwyer</a> · <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a> · <a href=\"https://profiles.wordpress.org/davidkryzaniak/\">David Kryzaniak</a> · <a href=\"https://profiles.wordpress.org/davidmosterd/\">David Mosterd</a> · <a href=\"https://profiles.wordpress.org/daviedr/\">David Rozando</a> · <a href=\"https://profiles.wordpress.org/dryanpress/\">David Ryan</a> · <a href=\"https://profiles.wordpress.org/get_dave/\">David Smith</a> · <a href=\"https://profiles.wordpress.org/davidwebca/\">davidwebca</a> · <a href=\"https://profiles.wordpress.org/devutpol/\">Deb Nath Utpol</a> · <a href=\"https://profiles.wordpress.org/dkarfa/\">Debabrata Karfa</a> · <a href=\"https://profiles.wordpress.org/deepaklalwani/\">Deepak Lalwani</a> · <a href=\"https://profiles.wordpress.org/denisco/\">Denis Yanchevskiy</a> · <a href=\"https://profiles.wordpress.org/dingo_d/\">Denis Žoljom</a> · <a href=\"https://profiles.wordpress.org/dmsnell/\">Dennis Snell</a> · <a href=\"https://profiles.wordpress.org/dhanendran/\">Dhanendran</a> · <a href=\"https://profiles.wordpress.org/dhusakovic/\">dhusakovic</a> · <a href=\"https://profiles.wordpress.org/diedeexterkate/\">DiedeExterkate</a> · <a href=\"https://profiles.wordpress.org/dilipbheda/\">Dilip Bheda</a> · <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a> · <a href=\"https://profiles.wordpress.org/dlt101/\">dlt101</a> · <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a> · <a href=\"https://profiles.wordpress.org/donmhico/\">donmhico</a> · <a href=\"https://profiles.wordpress.org/codezen8/\">Donna Botti</a> · <a href=\"https://profiles.wordpress.org/dontgo2sleep/\">dontgo2sleep</a> · <a href=\"https://profiles.wordpress.org/dougwollison/\">Doug Wollison</a> · <a href=\"https://profiles.wordpress.org/dpegasusm/\">dpegasusm</a> · <a href=\"https://profiles.wordpress.org/raubvogel/\">Dr. Ronny Harbich</a> · <a href=\"https://profiles.wordpress.org/dratwas/\">dratwas</a> · <a href=\"https://profiles.wordpress.org/drewapicture/\">Drew Jaynes</a> · <a href=\"https://profiles.wordpress.org/drosmog/\">drosmog</a> · <a href=\"https://profiles.wordpress.org/dustinrue/\">dustinrue</a> · <a href=\"https://profiles.wordpress.org/seedsca/\">ecotechie</a> · <a href=\"https://profiles.wordpress.org/eddystile/\">Eddy</a> · <a href=\"https://profiles.wordpress.org/ehtis/\">ehtis</a> · <a href=\"https://profiles.wordpress.org/ekojr/\">EkoJR</a> · <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van Durpe</a> · <a href=\"https://profiles.wordpress.org/manooweb/\">Emmanuel Hesry</a> · <a href=\"https://profiles.wordpress.org/empatogen/\">empatogen</a> · <a href=\"https://profiles.wordpress.org/enchiridion/\">Enchiridion</a> · <a href=\"https://profiles.wordpress.org/enej/\">Enej Bajgorić</a> · <a href=\"https://profiles.wordpress.org/nrqsnchz/\">Enrique S&#225;nchez</a> · <a href=\"https://profiles.wordpress.org/erayalakese/\">erayalakese</a> · <a href=\"https://profiles.wordpress.org/teachlynx/\">Eric Malalel</a> · <a href=\"https://profiles.wordpress.org/ethitter/\">Erick Hitter</a> · <a href=\"https://profiles.wordpress.org/kebbet/\">Erik Betshammar</a> · <a href=\"https://profiles.wordpress.org/etoledo/\">etoledo</a> · <a href=\"https://profiles.wordpress.org/circlecube/\">Evan Mullins</a> · <a href=\"https://profiles.wordpress.org/fabiankaegy/\">Fabian K&#228;gy</a> · <a href=\"https://profiles.wordpress.org/gaambo/\">Fabian Todt</a> · <a href=\"https://profiles.wordpress.org/faisal03/\">Faisal Alvi</a> · <a href=\"https://profiles.wordpress.org/fedepia/\">fedepia</a> · <a href=\"https://profiles.wordpress.org/felipeelia/\">Felipe Elia</a> · <a href=\"https://profiles.wordpress.org/felipeloureirosantos/\">Felipe Santos</a> · <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a> · <a href=\"https://profiles.wordpress.org/mista-flo/\">Florian TIAR</a> · <a href=\"https://profiles.wordpress.org/fpcsjames/\">FPCSJames</a> · <a href=\"https://profiles.wordpress.org/piewp/\">fperdaan</a> · <a href=\"https://profiles.wordpress.org/francina/\">Francesca Marano</a> · <a href=\"https://profiles.wordpress.org/fcolombo/\">Francesco</a> · <a href=\"https://profiles.wordpress.org/gadhiyaravi/\">gadhiyaravi</a> · <a href=\"https://profiles.wordpress.org/galbaras/\">Gal Baras</a> · <a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</a> · <a href=\"https://profiles.wordpress.org/garyj/\">Gary Jones</a> · <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a> · <a href=\"https://profiles.wordpress.org/gazchap/\">gazchap</a> · <a href=\"https://profiles.wordpress.org/generosus/\">generosus</a> · <a href=\"https://profiles.wordpress.org/soulseekah/\">Gennady Kovshenin</a> · <a href=\"https://profiles.wordpress.org/revgeorge/\">George Hotelling</a> · <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a> · <a href=\"https://profiles.wordpress.org/georgestephanis/\">George Stephanis</a> · <a href=\"https://profiles.wordpress.org/geriux/\">Gerardo Pacheco</a> · <a href=\"https://profiles.wordpress.org/gilbitron/\">Gilbert Pellegrom</a> · <a href=\"https://profiles.wordpress.org/glendaviesnz/\">Glen Davies</a> · <a href=\"https://profiles.wordpress.org/goldsounds/\">goldsounds</a> · <a href=\"https://profiles.wordpress.org/gkloveweb/\">Govind</a> · <a href=\"https://profiles.wordpress.org/grantmkin/\">Grant M. Kinney</a> · <a href=\"https://profiles.wordpress.org/gregrickaby/\">Greg Rickaby</a> · <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Zi&#243;łkowski</a> · <a href=\"https://profiles.wordpress.org/guillaumeturpin/\">Guillaume TURPIN</a> · <a href=\"https://profiles.wordpress.org/priethor/\">H&#233;ctor Prieto</a> · <a href=\"https://profiles.wordpress.org/hansjovisyoast/\">Hans-Christiaan Braun</a> · <a href=\"https://profiles.wordpress.org/haosun/\">haosun</a> · <a href=\"https://profiles.wordpress.org/hareesh-pillai/\">Hareesh</a> · <a href=\"https://profiles.wordpress.org/hasanuzzamanshamim/\">Hasanuzzaman</a> · <a href=\"https://profiles.wordpress.org/azhiyadev/\">Hauwa Abashiya</a> · <a href=\"https://profiles.wordpress.org/hazdiego/\">Haz</a> · <a href=\"https://profiles.wordpress.org/henrywright/\">Henry Wright</a> · <a href=\"https://profiles.wordpress.org/herbmiller/\">herbmiller</a> · <a href=\"https://profiles.wordpress.org/hermpheus/\">Herm Martini</a> · <a href=\"https://profiles.wordpress.org/herregroen/\">Herre Groen</a> · <a href=\"https://profiles.wordpress.org/hilayt24/\">Hilay Trivedi</a> · <a href=\"https://profiles.wordpress.org/hirofumi2012/\">hirofumi2012</a> · <a href=\"https://profiles.wordpress.org/hitendra-chopda/\">Hitendra Chopda</a> · <a href=\"https://profiles.wordpress.org/h71/\">Hossein Farahani</a> · <a href=\"https://profiles.wordpress.org/htmgarcia/\">htmgarcia</a> · <a href=\"https://profiles.wordpress.org/hudson-atwell/\">Hudson Atwell</a> · <a href=\"https://profiles.wordpress.org/hlashbrooke/\">Hugh Lashbrooke</a> · <a href=\"https://profiles.wordpress.org/hugod/\">hugod</a> · <a href=\"https://profiles.wordpress.org/ianbelanger/\">Ian Belanger</a> · <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a> · <a href=\"https://profiles.wordpress.org/ianatkins/\">ianatkins</a> · <a href=\"https://profiles.wordpress.org/ianhayes94/\">ianhayes94</a> · <a href=\"https://profiles.wordpress.org/ianmjones/\">ianmjones</a> · <a href=\"https://profiles.wordpress.org/ignatggeorgiev/\">Ignat Georgiev</a> · <a href=\"https://profiles.wordpress.org/ibenic/\">Igor Benic</a> · <a href=\"https://profiles.wordpress.org/ilovecats7/\">ilovecats7</a> · <a href=\"https://profiles.wordpress.org/infected/\">infected</a> · <a href=\"https://profiles.wordpress.org/ipstenu/\">Ipstenu (Mika Epstein)</a> · <a href=\"https://profiles.wordpress.org/ironprogrammer/\">ironprogrammer</a> · <a href=\"https://profiles.wordpress.org/iluy/\">Isaac</a> · <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a> · <a href=\"https://profiles.wordpress.org/ismaeld/\">ismaeld</a> · <a href=\"https://profiles.wordpress.org/itsamoreh/\">itsamoreh</a> · <a href=\"https://profiles.wordpress.org/iulia-cazan/\">Iulia Cazan</a> · <a href=\"https://profiles.wordpress.org/jdgrimes/\">J.D. Grimes</a> · <a href=\"https://profiles.wordpress.org/jackreichert/\">Jack Reichert</a> · <a href=\"https://profiles.wordpress.org/whyisjake/\">Jake Spurlock</a> · <a href=\"https://profiles.wordpress.org/jakubtyrcha/\">jakub.tyrcha</a> · <a href=\"https://profiles.wordpress.org/mcjambi/\">Jam Viet</a> · <a href=\"https://profiles.wordpress.org/macmanx/\">James Huff</a> · <a href=\"https://profiles.wordpress.org/jameskoster/\">James Koster</a> · <a href=\"https://profiles.wordpress.org/janthiel/\">Jan Thiel</a> · <a href=\"https://profiles.wordpress.org/janwoostendorp/\">janw.oostendorp</a> · <a href=\"https://profiles.wordpress.org/jsnjohnston/\">Jason Johnston</a> · <a href=\"https://profiles.wordpress.org/evermail/\">Jason R. Johnston</a> · <a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a> · <a href=\"https://profiles.wordpress.org/javiercasares/\">Javier Casares</a> · <a href=\"https://profiles.wordpress.org/jayupadhyay01/\">Jay Upadhyay</a> · <a href=\"https://profiles.wordpress.org/audrasjb/\">Jean-Baptiste Audras</a> · <a href=\"https://profiles.wordpress.org/teucrium/\">Jean-Philippe</a> · <a href=\"https://profiles.wordpress.org/jblz/\">Jeff Bowen</a> · <a href=\"https://profiles.wordpress.org/jffng/\">Jeff Ong</a> · <a href=\"https://profiles.wordpress.org/jeffpaul/\">jeffpaul</a> · <a href=\"https://profiles.wordpress.org/jdy68/\">Jenny Dupuy</a> · <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a> · <a href=\"https://profiles.wordpress.org/jeherve/\">Jeremy Herve</a> · <a href=\"https://profiles.wordpress.org/jeremyescott/\">Jeremy Scott</a> · <a href=\"https://profiles.wordpress.org/jeremyyip/\">Jeremy Yip</a> · <a href=\"https://profiles.wordpress.org/amieiro/\">Jes&#250;s Amieiro</a> · <a href=\"https://profiles.wordpress.org/engelen/\">Jesper van Engelen</a> · <a href=\"https://profiles.wordpress.org/luminuu/\">Jessica Lyschik</a> · <a href=\"https://profiles.wordpress.org/jigneshnakrani/\">Jignesh Nakrani</a> · <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a> · <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a> · <a href=\"https://profiles.wordpress.org/joegasper/\">joegasper</a> · <a href=\"https://profiles.wordpress.org/joelcj91/\">Joel James</a> · <a href=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a> · <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a> · <a href=\"https://profiles.wordpress.org/johnillo/\">John Espiritu</a> · <a href=\"https://profiles.wordpress.org/johnny5/\">John Godley</a> · <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a> · <a href=\"https://profiles.wordpress.org/zenithcity/\">john zenith</a> · <a href=\"https://profiles.wordpress.org/lwangaman/\">JohnRDOrazio (CLPTE)</a> · <a href=\"https://profiles.wordpress.org/psykro/\">Jonathan Bossenger</a> · <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a> · <a href=\"https://profiles.wordpress.org/spacedmonkey/\">Jonny Harris</a> · <a href=\"https://profiles.wordpress.org/jonoaldersonwp/\">Jono Alderson</a> · <a href=\"https://profiles.wordpress.org/joostdevalk/\">Joost de Valk</a> · <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a> · <a href=\"https://profiles.wordpress.org/josklever/\">Jos Klever</a> · <a href=\"https://profiles.wordpress.org/josephdickson/\">Joseph Dickson</a> · <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden</a> · <a href=\"https://profiles.wordpress.org/joyously/\">Joy</a> · <a href=\"https://profiles.wordpress.org/jsnajdr/\">jsnajdr</a> · <a href=\"https://profiles.wordpress.org/juanruitina/\">Juan Ruiti&#241;a</a> · <a href=\"https://profiles.wordpress.org/juanmaguitar/\">JuanMa Garrido</a> · <a href=\"https://profiles.wordpress.org/juhise/\">Juhi Saxena</a> · <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a> · <a href=\"https://profiles.wordpress.org/junaidbhura/\">Junaid Bhura</a> · <a href=\"https://profiles.wordpress.org/nukaga/\">Junko Nukaga</a> · <a href=\"https://profiles.wordpress.org/justinahinon/\">Justin Ahinon</a> · <a href=\"https://profiles.wordpress.org/justindocanto/\">Justin DoCanto</a> · <a href=\"https://profiles.wordpress.org/greenshady/\">Justin Tadlock</a> · <a href=\"https://profiles.wordpress.org/kadamwhite/\">K. Adam White</a> · <a href=\"https://profiles.wordpress.org/kafleg/\">KafleG</a> · <a href=\"https://profiles.wordpress.org/kevin940726/\">Kai Hao</a> · <a href=\"https://profiles.wordpress.org/kallookoo/\">kallookoo</a> · <a href=\"https://profiles.wordpress.org/akabarikalpesh/\">Kalpesh Akabari</a> · <a href=\"https://profiles.wordpress.org/kaneva/\">kaneva</a> · <a href=\"https://profiles.wordpress.org/kapilpaul/\">Kapil Paul</a> · <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Choyce-Dwan</a> · <a href=\"https://profiles.wordpress.org/kellychoffman/\">Kelly Hoffman</a> · <a href=\"https://profiles.wordpress.org/keoshi/\">keoshi</a> · <a href=\"https://profiles.wordpress.org/sourav926/\">Keramot UL Islam</a> · <a href=\"https://profiles.wordpress.org/kingkero/\">kero</a> · <a href=\"https://profiles.wordpress.org/gwwar/\">Kerry Liu</a> · <a href=\"https://profiles.wordpress.org/kevinfodness/\">Kevin Fodness</a> · <a href=\"https://profiles.wordpress.org/keyur5/\">keyur5</a> · <a href=\"https://profiles.wordpress.org/kharisblank/\">Kharis Sulistiyono</a> · <a href=\"https://profiles.wordpress.org/kjellr/\">Kjell Reigstad</a> · <a href=\"https://profiles.wordpress.org/knutsp/\">Knut Sparhell</a> · <a href=\"https://profiles.wordpress.org/vdwijngaert/\">Koen Van den Wijngaert</a> · <a href=\"https://profiles.wordpress.org/obenland/\">Konstantin Obenland</a> · <a href=\"https://profiles.wordpress.org/xkon/\">Konstantinos Xenos</a> · <a href=\"https://profiles.wordpress.org/kurudrive/\">kurudrive</a> · <a href=\"https://profiles.wordpress.org/kwisatz/\">kwisatz</a> · <a href=\"https://profiles.wordpress.org/devnel/\">Kyle Nel</a> · <a href=\"https://profiles.wordpress.org/kzeni/\">KZeni</a> · <a href=\"https://profiles.wordpress.org/lalitjalandhar/\">lalitjalandhar</a> · <a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a> · <a href=\"https://profiles.wordpress.org/laxman-prajapati/\">Laxman Prajapati</a> · <a href=\"https://profiles.wordpress.org/leemon/\">leemon</a> · <a href=\"https://profiles.wordpress.org/0mirka00/\">Lena Morita</a> · <a href=\"https://profiles.wordpress.org/leogermani/\">leogermani</a> · <a href=\"https://profiles.wordpress.org/lgladdy/\">Liam Gladdy</a> · <a href=\"https://profiles.wordpress.org/liammitchell/\">liammitchell</a> · <a href=\"https://profiles.wordpress.org/rudlinkon/\">Linkon Miyan</a> · <a href=\"https://profiles.wordpress.org/linux4me2/\">linux4me2</a> · <a href=\"https://profiles.wordpress.org/webaxones/\">Lo&#239;c Antignac</a> · <a href=\"https://profiles.wordpress.org/loranrendel/\">Loran A. Rendel</a> · <a href=\"https://profiles.wordpress.org/karpstrucking/\">Lucas Karpiuk</a> · <a href=\"https://profiles.wordpress.org/lucasw89/\">lucasw89</a> · <a href=\"https://profiles.wordpress.org/lucatume/\">lucatume</a> · <a href=\"https://profiles.wordpress.org/zaguiini/\">Luis Felipe Zaguini</a> · <a href=\"https://profiles.wordpress.org/lukecarbis/\">Luke Carbis</a> · <a href=\"https://profiles.wordpress.org/lukecavanagh/\">Luke Cavanagh</a> · <a href=\"https://profiles.wordpress.org/pyrobd/\">Lukman Nakib</a> · <a href=\"https://profiles.wordpress.org/luovalabs/\">luovalabs</a> · <a href=\"https://profiles.wordpress.org/lynk/\">lynk</a> · <a href=\"https://profiles.wordpress.org/asif2bd/\">M Asif Rahman</a> · <a href=\"https://profiles.wordpress.org/gorby31/\">Madalin Gorbanescu</a> · <a href=\"https://profiles.wordpress.org/aetherunbound/\">Madison</a> · <a href=\"https://profiles.wordpress.org/onemaggie/\">Maggie Cabrera</a> · <a href=\"https://profiles.wordpress.org/mai21/\">Mai</a> · <a href=\"https://profiles.wordpress.org/malae/\">Malae</a> · <a href=\"https://profiles.wordpress.org/malthert/\">malthert</a> · <a href=\"https://profiles.wordpress.org/manfcarlo/\">manfcarlo</a> · <a href=\"https://profiles.wordpress.org/manishamakhija/\">Manisha Makhija</a> · <a href=\"https://profiles.wordpress.org/manzoorwanijk/\">Manzoor Wani</a> · <a href=\"https://profiles.wordpress.org/fullofcaffeine/\">Marcelo de Moraes Serpa</a> · <a href=\"https://profiles.wordpress.org/mciampini/\">Marco Ciampini</a> · <a href=\"https://profiles.wordpress.org/mkaz/\">Marcus Kazmierczak</a> · <a href=\"https://profiles.wordpress.org/marekhrabe/\">Marek Hrabe</a> · <a href=\"https://profiles.wordpress.org/tyxla/\">Marin Atanasov</a> · <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a> · <a href=\"https://profiles.wordpress.org/mark-k/\">Mark-k</a> · <a href=\"https://profiles.wordpress.org/marybaum/\">Mary Baum</a> · <a href=\"https://profiles.wordpress.org/wetah/\">Mateus Machado Luna</a> · <a href=\"https://profiles.wordpress.org/matveb/\">Matias Ventura</a> · <a href=\"https://profiles.wordpress.org/mhuntdesign/\">Matt</a> · <a href=\"https://profiles.wordpress.org/mattchowning/\">Matt Chowning</a> · <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a> · <a href=\"https://profiles.wordpress.org/mattwiebe/\">Matt Wiebe</a> · <a href=\"https://profiles.wordpress.org/mattoakley/\">mattoakley</a> · <a href=\"https://profiles.wordpress.org/azouamauriac/\">Mauriac AZOUA</a> · <a href=\"https://profiles.wordpress.org/wppunk/\">Max</a> · <a href=\"https://profiles.wordpress.org/max-dayala/\">MaxD</a> · <a href=\"https://profiles.wordpress.org/maximeculea/\">Maxime Culea</a> · <a href=\"https://profiles.wordpress.org/mclaurent/\">mclaurent</a> · <a href=\"https://profiles.wordpress.org/medusor/\">MEDUSOR</a> · <a href=\"https://profiles.wordpress.org/megphillips91/\">Meg Phillips</a> · <a href=\"https://profiles.wordpress.org/meher/\">Meher Bala</a> · <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce-Dwan</a> · <a href=\"https://profiles.wordpress.org/mgol/\">mgol</a> · <a href=\"https://profiles.wordpress.org/wpscholar/\">Micah Wood</a> · <a href=\"https://profiles.wordpress.org/mdawaffe/\">Michael Adams (mdawaffe)</a> · <a href=\"https://profiles.wordpress.org/tw2113/\">Michael Beckwith</a> · <a href=\"https://profiles.wordpress.org/mburridge/\">Michael Burridge</a> · <a href=\"https://profiles.wordpress.org/mnelson4/\">Michael Nelson</a> · <a href=\"https://profiles.wordpress.org/czapla/\">Michal Czaplinski</a> · <a href=\"https://profiles.wordpress.org/michelwppi/\">Michel - xiligroup dev</a> · <a href=\"https://profiles.wordpress.org/mcsf/\">Miguel Fonseca</a> · <a href=\"https://profiles.wordpress.org/mikaelmayer/\">mikaelmayer</a> · <a href=\"https://profiles.wordpress.org/mikejolley/\">Mike Jolley (a11n)</a> · <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a> · <a href=\"https://profiles.wordpress.org/dimadin/\">Milan Dinić</a> · <a href=\"https://profiles.wordpress.org/milana_cap/\">Milana Cap</a> · <a href=\"https://profiles.wordpress.org/multidots1896/\">Minal Diwan</a> · <a href=\"https://profiles.wordpress.org/mjaschen/\">mjaschen</a> · <a href=\"https://profiles.wordpress.org/mjulian7/\">mjulian7</a> · <a href=\"https://profiles.wordpress.org/mmxxi/\">mmxxi</a> · <a href=\"https://profiles.wordpress.org/moch11/\">moch11</a> · <a href=\"https://profiles.wordpress.org/opurockey/\">Mohammad Rockeybul Alam</a> · <a href=\"https://profiles.wordpress.org/monikarao/\">Monika Rao</a> · <a href=\"https://profiles.wordpress.org/mt8biz/\">moto hachi</a> · <a href=\"https://profiles.wordpress.org/computerguru/\">mqudsi</a> · <a href=\"https://profiles.wordpress.org/mreishus/\">mreishus</a> · <a href=\"https://profiles.wordpress.org/mrjoeldean/\">mrjoeldean</a> · <a href=\"https://profiles.wordpress.org/mtoensing/\">mtoensing</a> · <a href=\"https://profiles.wordpress.org/wparslan/\">Muhammad Arslan</a> · <a href=\"https://profiles.wordpress.org/muhammadfaizanhaidar/\">Muhammad Faizan Haidar</a> · <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a> · <a href=\"https://profiles.wordpress.org/musabshakeel/\">Musab Shakeel</a> · <a href=\"https://profiles.wordpress.org/amustaque97/\">Mustaque Ahmed</a> · <a href=\"https://profiles.wordpress.org/assassinateur/\">Nadir Seghir</a> · <a href=\"https://profiles.wordpress.org/nalininonstopnewsuk/\">Nalini Thakor</a> · <a href=\"https://profiles.wordpress.org/namithjawahar/\">Namith Jawahar</a> · <a href=\"https://profiles.wordpress.org/nao/\">Naoko Takano</a> · <a href=\"https://profiles.wordpress.org/natewr/\">NateWr</a> · <a href=\"https://profiles.wordpress.org/greatislander/\">Ned Zimmerman</a> · <a href=\"https://profiles.wordpress.org/nettsite/\">NettSite</a> · <a href=\"https://profiles.wordpress.org/eidolonnight/\">Nicholas Garofalo</a> · <a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a> · <a href=\"https://profiles.wordpress.org/celloexpressions/\">Nick Halsey</a> · <a href=\"https://profiles.wordpress.org/nickcernis/\">nickcernis</a> · <a href=\"https://profiles.wordpress.org/nico23/\">Nico</a> · <a href=\"https://profiles.wordpress.org/jainnidhi/\">Nidhi Jain</a> · <a href=\"https://profiles.wordpress.org/nidhidhandhukiya/\">nidhidhandhukiya</a> · <a href=\"https://profiles.wordpress.org/nielslange/\">Niels Lange</a> · <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a> · <a href=\"https://profiles.wordpress.org/nikschavan/\">Nikhil Chavan</a> · <a href=\"https://profiles.wordpress.org/nlpro/\">nlpro</a> · <a href=\"https://profiles.wordpress.org/ockham/\">ockham</a> · <a href=\"https://profiles.wordpress.org/oglekler/\">Olga Gleckler</a> · <a href=\"https://profiles.wordpress.org/domainsupport/\">Oliver Campion</a> · <a href=\"https://profiles.wordpress.org/alshakero/\">Omar Alshaker</a> · <a href=\"https://profiles.wordpress.org/omarreiss/\">Omar Reiss</a> · <a href=\"https://profiles.wordpress.org/opr18/\">opr18</a> · <a href=\"https://profiles.wordpress.org/ellenbauer/\">Outzen Larkin</a> · <a href=\"https://profiles.wordpress.org/ov3rfly/\">Ov3rfly</a> · <a href=\"https://profiles.wordpress.org/ovann86/\">ovann86</a> · <a href=\"https://profiles.wordpress.org/ovidiul/\">ovidiul</a> · <a href=\"https://profiles.wordpress.org/paaljoachim/\">Paal Joachim Romdahl</a> · <a href=\"https://profiles.wordpress.org/pablohoneyhoney/\">Pablo Honey</a> · <a href=\"https://profiles.wordpress.org/iaaxpage/\">page-carbajal</a> · <a href=\"https://profiles.wordpress.org/palmiak/\">palmiak</a> · <a href=\"https://profiles.wordpress.org/pankajmohale/\">Pankaj Mohale</a> · <a href=\"https://profiles.wordpress.org/pls78/\">Paolo L. Scala</a> · <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a> · <a href=\"https://profiles.wordpress.org/patrick-b/\">Patrick Boehner</a> · <a href=\"https://profiles.wordpress.org/pbearne/\">Paul Bearne</a> · <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a> · <a href=\"https://profiles.wordpress.org/pabline/\">Paul Bunkham</a> · <a href=\"https://profiles.wordpress.org/rixeo/\">Paul Kevin</a> · <a href=\"https://profiles.wordpress.org/paulschreiber/\">Paul Schreiber</a> · <a href=\"https://profiles.wordpress.org/pschrottky/\">Paul Von Schrottky</a> · <a href=\"https://profiles.wordpress.org/psrpinto/\">Paulo Pinto</a> · <a href=\"https://profiles.wordpress.org/malinevskiy/\">Pavlo</a> · <a href=\"https://profiles.wordpress.org/pbking/\">pbking</a> · <a href=\"https://profiles.wordpress.org/pedromendonca/\">Pedro Mendon&#231;a</a> · <a href=\"https://profiles.wordpress.org/pputzer/\">pepe</a> · <a href=\"https://profiles.wordpress.org/petaryoast/\">Petar Ratković</a> · <a href=\"https://profiles.wordpress.org/psmits1567/\">Peter Smits</a> · <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a> · <a href=\"https://profiles.wordpress.org/walbo/\">Petter Walb&#248; Johnsg&#229;rd</a> · <a href=\"https://profiles.wordpress.org/pgpagely/\">pgpagely</a> · <a href=\"https://profiles.wordpress.org/johnstonphilip/\">Phil Johnston</a> · <a href=\"https://profiles.wordpress.org/philipmjackson/\">Philip Jackson</a> · <a href=\"https://profiles.wordpress.org/pierlo/\">Pierre Gordon</a> · <a href=\"https://profiles.wordpress.org/nekojonez/\">Pieterjan Deneys</a> · <a href=\"https://profiles.wordpress.org/boniu91/\">Piotrek Boniu</a> · <a href=\"https://profiles.wordpress.org/webtechpooja/\">Pooja Derashri</a> · <a href=\"https://profiles.wordpress.org/powerbuoy/\">powerbuoy</a> · <a href=\"https://profiles.wordpress.org/praem90/\">praem90</a> · <a href=\"https://profiles.wordpress.org/promz/\">Pramod Jodhani</a> · <a href=\"https://profiles.wordpress.org/presskopp/\">Presskopp</a> · <a href=\"https://profiles.wordpress.org/presstoke/\">presstoke</a> · <a href=\"https://profiles.wordpress.org/procodewp/\">procodewp</a> · <a href=\"https://profiles.wordpress.org/psealock/\">psealock</a> · <a href=\"https://profiles.wordpress.org/psufan/\">psufan</a> · <a href=\"https://profiles.wordpress.org/pwtyler/\">pwtyler</a> · <a href=\"https://profiles.wordpress.org/rachelbaker/\">Rachel Baker</a> · <a href=\"https://profiles.wordpress.org/radixweb/\">Radixweb</a> · <a href=\"https://profiles.wordpress.org/rafiahmedd/\">Rafi Ahmed</a> · <a href=\"https://profiles.wordpress.org/rtm909/\">Rahul Mehta</a> · <a href=\"https://profiles.wordpress.org/ralucastn/\">ralucastn</a> · <a href=\"https://profiles.wordpress.org/rahmohn/\">Ramon Ahnert</a> · <a href=\"https://profiles.wordpress.org/ramonopoly/\">ramonopoly</a> · <a href=\"https://profiles.wordpress.org/ravipatel/\">ravipatel</a> · <a href=\"https://profiles.wordpress.org/rehanali/\">Rehan Ali</a> · <a href=\"https://profiles.wordpress.org/renathoc/\">Renatho (a11n)</a> · <a href=\"https://profiles.wordpress.org/retrofox/\">retrofox</a> · <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a> · <a href=\"https://profiles.wordpress.org/rianrietveld/\">Rian Rietveld</a> · <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a> · <a href=\"https://profiles.wordpress.org/richybkreckel/\">Richard B. Kreckel</a> · <a href=\"https://profiles.wordpress.org/richardfoley/\">Richard Foley</a> · <a href=\"https://profiles.wordpress.org/richards1052/\">richards1052</a> · <a href=\"https://profiles.wordpress.org/rickcurran/\">Rick Curran</a> · <a href=\"https://profiles.wordpress.org/rbrishabh/\">Rishabh Budhiraja</a> · <a href=\"https://profiles.wordpress.org/saju4wordpress/\">Riyadh Ahmed</a> · <a href=\"https://profiles.wordpress.org/rmartinezduque/\">rmartinezduque</a> · <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a> · <a href=\"https://profiles.wordpress.org/robertghetau/\">robertght</a> · <a href=\"https://profiles.wordpress.org/robtarr/\">robtarr</a> · <a href=\"https://profiles.wordpress.org/kreppar/\">Rodrigo Arias</a> · <a href=\"https://profiles.wordpress.org/rohan013/\">Rohan Rawat</a> · <a href=\"https://profiles.wordpress.org/rhnsharma/\">Rohan Sharma</a> · <a href=\"https://profiles.wordpress.org/rolfsiebers/\">Rolf Siebers</a> · <a href=\"https://profiles.wordpress.org/ronakganatra/\">Ronak Ganatra</a> · <a href=\"https://profiles.wordpress.org/rkohilakis/\">Roxy Kohilakis</a> · <a href=\"https://profiles.wordpress.org/rufus87/\">Rufus87</a> · <a href=\"https://profiles.wordpress.org/russhylov/\">Ruslan</a> · <a href=\"https://profiles.wordpress.org/rviscomi/\">rviscomi</a> · <a href=\"https://profiles.wordpress.org/welcher/\">Ryan Welcher</a> · <a href=\"https://profiles.wordpress.org/skierpage/\">S Page</a> · <a href=\"https://profiles.wordpress.org/sebastienserre/\">S&#233;bastien SERRE</a> · <a href=\"https://profiles.wordpress.org/soean/\">S&#246;ren Wrede</a> · <a href=\"https://profiles.wordpress.org/sabbirshouvo/\">Sabbir Hasan</a> · <a href=\"https://profiles.wordpress.org/sabrib/\">Sabri Bouchaala</a> · <a href=\"https://profiles.wordpress.org/zeo/\">Safirul Alredha</a> · <a href=\"https://profiles.wordpress.org/solarissmoke/\">Samir Shah</a> · <a href=\"https://profiles.wordpress.org/otto42/\">Samuel Wood (Otto)</a> · <a href=\"https://profiles.wordpress.org/sandipmondal/\">Sandip Mondal - a11n</a> · <a href=\"https://profiles.wordpress.org/sanketchodavadiya/\">Sanket Chodavadiya</a> · <a href=\"https://profiles.wordpress.org/mikachan/\">Sarah Norris</a> · <a href=\"https://profiles.wordpress.org/sarayourfriend/\">sarayourfriend</a> · <a href=\"https://profiles.wordpress.org/sathyapulse/\">Sathiyamoorthy V</a> · <a href=\"https://profiles.wordpress.org/savicmarko1985/\">savicmarko1985</a> · <a href=\"https://profiles.wordpress.org/sayedulsayem/\">Sayedul Sayem</a> · <a href=\"https://profiles.wordpress.org/swb1192/\">Scott Buscemi</a> · <a href=\"https://profiles.wordpress.org/scribu/\">scribu</a> · <a href=\"https://profiles.wordpress.org/seanmcmillan/\">Sean McMillan</a> · <a href=\"https://profiles.wordpress.org/sebastianpisula/\">Sebastian Pisula</a> · <a href=\"https://profiles.wordpress.org/omaeyusuke/\">Segayuu</a> · <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a> · <a href=\"https://profiles.wordpress.org/sergiocinos/\">Sergio Cinos</a> · <a href=\"https://profiles.wordpress.org/sergioestevao/\">SergioEstevao</a> · <a href=\"https://profiles.wordpress.org/shaharyar10/\">Shaharyar Afzal</a> · <a href=\"https://profiles.wordpress.org/shaunandrews/\">shaunandrews</a> · <a href=\"https://profiles.wordpress.org/shohag121/\">Shazahanul Islam Shohag</a> · <a href=\"https://profiles.wordpress.org/shimon246/\">shimon246</a> · <a href=\"https://profiles.wordpress.org/shital-patel/\">Shital Marakana</a> · <a href=\"https://profiles.wordpress.org/shivapoudel/\">Shiva Poudel</a> · <a href=\"https://profiles.wordpress.org/rsiddharth/\">siddharth</a> · <a href=\"https://profiles.wordpress.org/nomnom99/\">Siddharth Thevaril</a> · <a href=\"https://profiles.wordpress.org/siliconforks/\">siliconforks</a> · <a href=\"https://profiles.wordpress.org/simonhammes/\">simonhammes</a> · <a href=\"https://profiles.wordpress.org/siobhan/\">Siobhan</a> · <a href=\"https://profiles.wordpress.org/siobhyb/\">Siobhan</a> · <a href=\"https://profiles.wordpress.org/sirreal/\">sirreal</a> · <a href=\"https://profiles.wordpress.org/sjlevy/\">sjlevy</a> · <a href=\"https://profiles.wordpress.org/skunkbad/\">skunkbad</a> · <a href=\"https://profiles.wordpress.org/smit08/\">Smit Rathod</a> · <a href=\"https://profiles.wordpress.org/snapfractalpop/\">snapfractalpop</a> · <a href=\"https://profiles.wordpress.org/sourovroy/\">Sourov Roy</a> · <a href=\"https://profiles.wordpress.org/spytzo/\">spytzo</a> · <a href=\"https://profiles.wordpress.org/ssergei/\">ssergei</a> · <a href=\"https://profiles.wordpress.org/stacimc/\">stacimc</a> · <a href=\"https://profiles.wordpress.org/ryokuhi/\">Stefano Minoia</a> · <a href=\"https://profiles.wordpress.org/hypest/\">Stefanos Togoulidis</a> · <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a> · <a href=\"https://profiles.wordpress.org/netweb/\">Stephen Edgar</a> · <a href=\"https://profiles.wordpress.org/strider72/\">Stephen Rider</a> · <a href=\"https://profiles.wordpress.org/dufresnesteven/\">Steve Dufresne</a> · <a href=\"https://profiles.wordpress.org/stevehenty/\">Steve Henty</a> · <a href=\"https://profiles.wordpress.org/stevegs/\">stevegs</a> · <a href=\"https://profiles.wordpress.org/stormrockwell/\">Storm Rockwell</a> · <a href=\"https://profiles.wordpress.org/mahype/\">Sven Wagener</a> · <a href=\"https://profiles.wordpress.org/cybr/\">Sybre Waaijer</a> · <a href=\"https://profiles.wordpress.org/synchro/\">Synchro</a> · <a href=\"https://profiles.wordpress.org/szaqal21/\">szaqal21</a> · <a href=\"https://profiles.wordpress.org/tacoverdo/\">Taco Verdonschot</a> · <a href=\"https://profiles.wordpress.org/takahashi_fumiki/\">Takahashi Fumiki</a> · <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a> · <a href=\"https://profiles.wordpress.org/sparklingrobots/\">Tara King</a> · <a href=\"https://profiles.wordpress.org/tareiking/\">Tarei King</a> · <a href=\"https://profiles.wordpress.org/staatic/\">Team Staatic</a> · <a href=\"https://profiles.wordpress.org/tellyworth/\">Tellyworth</a> · <a href=\"https://profiles.wordpress.org/terraling/\">terraling</a> · <a href=\"https://profiles.wordpress.org/terriann/\">Terri Ann</a> · <a href=\"https://profiles.wordpress.org/themiked/\">theMikeD</a> · <a href=\"https://profiles.wordpress.org/tweetythierry/\">Thierry Muller</a> · <a href=\"https://profiles.wordpress.org/thulshof/\">Thijs Hulshof</a> · <a href=\"https://profiles.wordpress.org/thimalw/\">Thimal Wickremage</a> · <a href=\"https://profiles.wordpress.org/thisiswilliam/\">thisiswilliam</a> · <a href=\"https://profiles.wordpress.org/thomasplevy/\">Thomas Patrick Levy</a> · <a href=\"https://profiles.wordpress.org/timlappe/\">Tim Lappe</a> · <a href=\"https://profiles.wordpress.org/tnolte/\">Tim Nolte</a> · <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a> · <a href=\"https://profiles.wordpress.org/titsmaker/\">titsmaker</a> · <a href=\"https://profiles.wordpress.org/tjcafferkey/\">tjcafferkey</a> · <a href=\"https://profiles.wordpress.org/tmatsuur/\">tmatsuur</a> · <a href=\"https://profiles.wordpress.org/tobiasbg/\">TobiasBg</a> · <a href=\"https://profiles.wordpress.org/tobifjellner/\">tobifjellner (Tor-Bjorn Fjellner)</a> · <a href=\"https://profiles.wordpress.org/tomalec/\">Tomek</a> · <a href=\"https://profiles.wordpress.org/shimotomoki/\">Tomoki Shimomura</a> · <a href=\"https://profiles.wordpress.org/starbuck/\">Tony G</a> · <a href=\"https://profiles.wordpress.org/ttahmouch/\">Tony Tahmouch</a> · <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a> · <a href=\"https://profiles.wordpress.org/toro_unit/\">Toro_Unit (Hiroshi Urabe)</a> · <a href=\"https://profiles.wordpress.org/zodiac1978/\">Torsten Landsiedel</a> · <a href=\"https://profiles.wordpress.org/sierratr/\">Tracy</a> · <a href=\"https://profiles.wordpress.org/travisnorthcutt/\">Travis Northcutt</a> · <a href=\"https://profiles.wordpress.org/tubys/\">tubys</a> · <a href=\"https://profiles.wordpress.org/dinhtungdu/\">Tung Du</a> · <a href=\"https://profiles.wordpress.org/twstokes/\">twstokes</a> · <a href=\"https://profiles.wordpress.org/desaiuditd/\">Udit Desai</a> · <a href=\"https://profiles.wordpress.org/umesh84/\">Umesh Gupta</a> · <a href=\"https://profiles.wordpress.org/webulous/\">Venkat Raj</a> · <a href=\"https://profiles.wordpress.org/versusbassz/\">versusbassz</a> · <a href=\"https://profiles.wordpress.org/bartoszgrzesik/\">verybg</a> · <a href=\"https://profiles.wordpress.org/vcanales/\">Vicente Canales</a> · <a href=\"https://profiles.wordpress.org/szepeviktor/\">Viktor Sz&#233;pe</a> · <a href=\"https://profiles.wordpress.org/vishitshah/\">Vishit Shah</a> · <a href=\"https://profiles.wordpress.org/vladytimy/\">Vlad T</a> · <a href=\"https://profiles.wordpress.org/vondelphia/\">Vondelphia.com</a> · <a href=\"https://profiles.wordpress.org/vortfu/\">vortfu</a> · <a href=\"https://profiles.wordpress.org/wb1234/\">wb1234</a> · <a href=\"https://profiles.wordpress.org/webmandesign/\">WebMan Design &#124; Oliver Juhas</a> · <a href=\"https://profiles.wordpress.org/west7/\">Wes Theron</a> · <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a> · <a href=\"https://profiles.wordpress.org/wfmattr/\">WFMattR</a> · <a href=\"https://profiles.wordpress.org/skorasaurus/\">Will Skora</a> · <a href=\"https://profiles.wordpress.org/earnjam/\">William Earnhardt</a> · <a href=\"https://profiles.wordpress.org/williampatton/\">williampatton</a> · <a href=\"https://profiles.wordpress.org/wojsmol/\">wojsmol</a> · <a href=\"https://profiles.wordpress.org/woodyhayday/\">woodyhayday</a> · <a href=\"https://profiles.wordpress.org/wp_kc/\">wp_kc</a> · <a href=\"https://profiles.wordpress.org/antonynz/\">wpcharged</a> · <a href=\"https://profiles.wordpress.org/wpnomad/\">wpnomad a11n</a> · <a href=\"https://profiles.wordpress.org/wpsoul/\">wpsoul</a> · <a href=\"https://profiles.wordpress.org/wpweaver/\">wpweaver</a> · <a href=\"https://profiles.wordpress.org/yagniksangani/\">Yagnik Sangani</a> · <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a> · <a href=\"https://profiles.wordpress.org/dolphingg/\">Yunus Ertuğrul</a> · <a href=\"https://profiles.wordpress.org/yvettesonneveld/\">Yvette Sonneveld</a> · <a href=\"https://profiles.wordpress.org/zebulan/\">Zebulan Stanphill</a> · <a href=\"https://profiles.wordpress.org/zoiec/\">zoiec</a></p>\n\n\n\n<p>By release day, 71 locales had translated 90 percent or more of WordPress 5.9 in their language. Community translators are hard at work ensuring more translations are on their way. Thank you to everyone who helps to make WordPress available in 205 languages.</p>\n\n\n\n<p>Many thanks to all of the community volunteers who contribute in the <a href=\"https://wordpress.org/support/\">support forums</a>. They help to answer questions from people across the world. The success of releases, from the first one in 2003, owes much to the efforts of the support contributors.&nbsp;</p>\n\n\n\n<p><em>If contributing to WordPress appeals to you, it’s easy to learn more and get involved. Discover the different teams that come together to <a href=\"https://make.wordpress.org/\">Make WordPress</a> website and find out the latest plans on the <a href=\"https://make.wordpress.org/core/\">core development blog</a>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"12089\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:63:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"WordPress 5.9 RC3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/2022/01/wordpress-5-9-rc3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 18 Jan 2022 22:28:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"5.9\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=12050\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"Download to test the third Release Candidate (RC3) for WordPress 5.9.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Chloe Bringmann\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4760:\"\n<p>The third <a href=\"https://make.wordpress.org/core/handbook/glossary/#rc\">Release Candidate</a> (RC3) for <a href=\"https://make.wordpress.org/core/5-9/\">WordPress 5.9</a> is here!</p>\n\n\n\n<p>Thank you to everyone who has contributed thus far toward testing and filing bugs to help make WordPress 5.9 a great release. <strong>WordPress 5.9 is slated to land in just</strong> <strong>one week—on January 25, 2022.</strong> You still have time to help! Since RC2 arrived last week, testers have found and fixed <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;milestone=5.9&amp;time=01%2F12%2F2022..01%2F17%2F2022&amp;group=component&amp;max=500&amp;col=id&amp;col=summary&amp;col=owner&amp;col=type&amp;col=priority&amp;col=component&amp;col=version&amp;order=priority\">two</a> bugs, <a href=\"https://core.trac.wordpress.org/changeset/52596\">14 fixes</a> from Gutenberg. There has been one additional <a href=\"https://core.trac.wordpress.org/changeset/52598\">Gutenberg fix</a> today.</p>\n\n\n\n<h2 id=\"testing-the-release\">Testing the release</h2>\n\n\n\n<p>You can test the WordPress 5.9 release candidate in three ways:</p>\n\n\n\n<p><strong>Option 1</strong>: Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the “Bleeding edge” channel and “Beta/RC Only” stream).</p>\n\n\n\n<p><strong>Option 2</strong>: Download the beta version here (<a href=\"https://wordpress.org/wordpress-5.9-RC3.zip\">zip</a>).</p>\n\n\n\n<p><strong>Option 3</strong>: When using WP-CLI to upgrade from Beta 1, 2, 3, 4, RC1, or RC2 on a case-insensitive filesystem, please use the following command sequence:</p>\n\n\n\n<h4 id=\"command-one\">Command One:</h4>\n\n\n\n<pre class=\"wp-block-code\"><code>wp core update --version=5.9-RC3</code></pre>\n\n\n\n<h4 id=\"command-two\">Command Two:</h4>\n\n\n\n<pre class=\"wp-block-code\"><code>wp core update --version=5.9-RC3 --force</code></pre>\n\n\n\n<p>Your help to test the third Release Candidate is vital: the more testing that happens, the more stable the release, and the better the experience for users, developers, and the WordPress community.</p>\n\n\n\n<p>Thank you to all contributors who tested the <a href=\"https://wordpress.org/news/2022/01/wordpress-5-9-rc-2/\">RC2 release</a> and gave feedback. Testing for bugs is a critical part of polishing every release and is a great way to contribute to WordPress.</p>\n\n\n\n<h2 id=\"how-to-help\">How to help</h2>\n\n\n\n<p><a href=\"https://make.wordpress.org/test/2021/11/30/help-test-wordpress-5-9-features/\">Help test WordPress 5.9 features</a> – this post provides a guide to set up your testing environment, a list of testable features, and information about how to submit feedback you find as you go.</p>\n\n\n\n<p>Skilled in languages other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help translate WordPress into more than 100 languages!</a> Thanks to every locale that is working on translations.</p>\n\n\n\n<p>Developers and those interested in more background to the features can find more in the <a href=\"https://make.wordpress.org/core/2022/01/10/wordpress-5-9-field-guide/” with “https://make.wordpress.org/core/2022/01/10/wordpress-5-9-field-guide/\">Field Guide</a>. You can also follow the <a href=\"https://make.wordpress.org/core/5-9/\">5.9 development cycle</a> and timeline.</p>\n\n\n\n<p>If you have found a bug, you can post the details to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums.</p>\n\n\n\n<p>If you are comfortable writing a reproducible bug report, you can <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>, where you can also check the issue against <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</p>\n\n\n\n<p><em>For their help in compiling this post, props to </em><a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a>, <em><a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a>, </em><a href=\'https://profiles.wordpress.org/psykro/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>psykro</a><em>,<a href=\'https://profiles.wordpress.org/marybaum/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>marybaum</a>, <a href=\'https://profiles.wordpress.org/chanthaboune/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chanthaboune</a>, <a href=\'https://profiles.wordpress.org/davidbaumwald/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>davidbaumwald</a>, and <a href=\'https://profiles.wordpress.org/hellofromtonya/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>hellofromtonya</a>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"12050\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:61:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"WP Briefing: Episode 23: A letter from WordPress’ Executive Director\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"https://wordpress.org/news/2022/01/episode-23-a-letter-from-wordpress-executive-director/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 17 Jan 2022 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=12043\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:408:\"As we greet a new year, WordPress&#8217; Executive Director writes a letter to the project and community that speaks to the hopes of the year ahead. Have a question you&#8217;d like answered? You can submit them to wpbriefing@wordpress.org, either written or as a voice recording. Credits Editor:&#160;Dustin Hartzler Logo:&#160;Beatriz Fialho Production:&#160;Chloé Bringmann Song: Fearless First [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2022/01/WP-Briefing-023.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Chloe Bringmann\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:6741:\"\n<p>As we greet a new year, WordPress&#8217; Executive Director writes a letter to the project and community that speaks to the hopes of the year ahead.</p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 id=\"credits\">Credits</h2>\n\n\n\n<ul><li>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a></li><li>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a></li><li>Production:&nbsp;<a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a></li><li>Song: Fearless First by Kevin MacLeod</li></ul>\n\n\n\n<h2 id=\"transcript\">Transcript</h2>\n\n\n\n<span id=\"more-12043\"></span>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>00:10</p>\n\n\n\n<p>Hello, everyone, and welcome to the WordPress Briefing. The podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy. Here we go!</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>00:40</p>\n\n\n\n<p>Yesterday marked three years since the WordPress project welcomed me as their executive director. As I start my fourth year, I&#8217;ve spent a bit of time considering what the next five years will bring us. WordPress will turn 19 this year, which means that we will soon be a whopping 20 years old; for some of the people who have been with the project since the beginning, that can represent two-thirds of their whole life. And even if you were not that young when you got here, two decades as an open source project is really a cause for celebration.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>01:10</p>\n\n\n\n<p>I am not in that group that has been here forever. I showed up for the first time in 2009, as a community organizer, self-sponsored, and I learned so much about myself as a person and as a leader while I was doing that. So when I arrived as a sponsored contributor in 2015, I already knew exactly what made this work so fulfilling for me was these three things:&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>01:34</p>\n\n\n\n<p>First, the ability to lend a hand in those moments where I wish someone had lent a hand.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>01:40</p>\n\n\n\n<p>Second is the delight of seeing people&#8217;s first successes and the joy of watching them grow over time.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>01:48</p>\n\n\n\n<p>And the third was a chance to be part of something great, which turned out to be something greater; greater than me or you or a CMS.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>01:58</p>\n\n\n\n<p>This list is still at the heart of what I feel I get out of the WordPress project. But it has also grown substantially in my seven years as a sponsored contributor. I now also love how we as a community of contributors get to foster a better way to lead and a better way to collaborate. And through those things help people find a way to have a better life. Not just through WordPress, the CMS, but through WordPress, the people, and WordPress, the project.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>02:25</p>\n\n\n\n<p>And so when I think of what I want for WordPress in its 19th year, so that we can head with confidence and dignity into our 20th year, it is this:&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>02:35</p>\n\n\n\n<p>I want you to remember that you are not alone here. People come together in the world often because of a shared location. But WordPress fosters this beautiful experience of bringing us together because of what we care about. Whether you care about PHP standards, diversity in technology, helping people with their first big wins, making WordPress more secure. I mean, if what you care about is being able to write the most arcane and complex apps on top of WordPress that the world has ever seen. Then there are others out there who want to do that with you, too. We have so many things to connect about. And fortunately, we support a great piece of software for getting our thoughts out in the world. Take some time to see who else shares your thoughts and potentially learn a bit about the view from the other side.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>03:26</p>\n\n\n\n<p>And speaking of the other side, I also want us to approach our discussions as the US versus the Problem TM. WordPress may be 20 years old, and we may stand on the shoulders of giants, but right now, the people who are here you, you are explorers and creators and guides toward the best possible future for WordPress. The tension that we witness between teams is always about the best possible answers for the people who use our software. It is about securing the freedoms of the open web for everyone who comes after us whether they know they need those freedoms or not.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>04:04</p>\n\n\n\n<p>And finally, I want us to expand our reasons for doing this at all. If you are a member of the community of contributors, We frequently talk about how we give back because WordPress gave to us. Or if you are part of a Five for the Future group. You have heard that companies who have experienced success because of WordPress should commit 5% of their resources back to the project to ensure WordPress&#8217; long-term success. But the reason that I keep doing this, and hopefully a new reason for you to keep doing this is that we can take part in securing opportunities for future users of WordPress.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>04:42</p>\n\n\n\n<p>Yes, I want WordPress to be the best CMS. Yes, I want this community to be vibrant and engaged. Yes, I want WordPress to be a shining beacon of how to work remotely. And I want all of that because I know it is our careful and tireless stewardship of this project that lets us continue to lend a hand in those moments where people wish for someone to lend a hand.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>05:11</p>\n\n\n\n<p>Those are my hopes for WordPress in 2022 to move us forward into WordPress of the future. I hope you all will come with me and we can continue our journey together.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>05:23</p>\n\n\n\n<p>Thanks again for listening. I&#8217;m Josepha Haden and this is the WP Briefing. See you again in a couple of weeks.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"12043\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n	hourly	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n	1	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:4:\"site\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"14607090\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Thu, 19 May 2022 06:32:27 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Tue, 17 May 2022 16:42:37 GMT\";s:4:\"link\";s:63:\"<https://wordpress.org/news/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 1\";}}s:5:\"build\";s:14:\"20220128120558\";}','no'),(2637,'_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1652985148','no'),(2638,'_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1652941948','no'),(2639,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1652985150','no');
INSERT INTO `wp_options` VALUES (2640,'_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:61:\"\n	\n	\n	\n	\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"WPTavern: WooCommerce Calls for Early Testing on Custom Order Table Migrations\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=134456\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"https://wptavern.com/woocommerce-calls-for-early-testing-on-custom-order-table-migrations\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2217:\"<p>At the beginning of this year, WooCommerce <a href=\"https://wptavern.com/woocommerce-aims-to-produce-mvp-of-custom-tables-for-orders-by-q3-2022\">announced</a> its plan to produce an MVP of custom order tables by Q3, 2022, a long-awaited improvement that promises significant performance gains for stores. The plugin&#8217;s development team is now <a href=\"https://developer.woocommerce.com/2022/05/16/call-for-early-testing-custom-order-table-migrations/\">calling</a> for developers, agencies, and hosting companies to test migration to its first implementation of customer order tables. </p>\n\n\n\n<p>The process involves migrating orders from <code>wp_posts</code> and <code>wp_postmeta</code> to four new custom orders tables:</p>\n\n\n\n<ol><li>wp_wc_orders</li><li>wp_wc_order_addresses</li><li>wp_wc_order_operational_data</li><li>wp_wc_orders_meta</li></ol>\n\n\n\n<p>It requires a staging environment configured with WP-CLI and a staging database pre-loaded with order data.</p>\n\n\n\n<p>WooCommerce developer Vedanshu Jain has created a <a href=\"https://developer.woocommerce.com/2022/05/16/call-for-early-testing-custom-order-table-migrations/\">migration testing guide</a>, which details the custom code developers will need to add in order to enable the custom order tables. Once enabled, developers will have the option to migrate tables using WP-CLI or via Action Scheduler.</p>\n\n\n\n<img />\n\n\n\n<p>Jain is <a href=\"https://developer.woocommerce.com/2022/05/16/call-for-early-testing-custom-order-table-migrations/\">requesting feedback</a> from anyone who runs the migration process with details about how many orders, server memory size, DB version, and whether or not it timed out or responded better to a different batch size.  </p>\n\n\n\n<p>WooCommerce updating to use custom order tables will be a major change that will impact extension developers in different ways. The development team intends to publish an upgrade guide to support adoption of custom order tables after migrations have been ironed out. Later this year, when the update is anticipated to be rolled out to the core plugin, WooCommerce is aiming to make it strictly opt-in at first to allow shop owners time to make their sites compatible.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 18 May 2022 21:05:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"WordPress Foundation: The Kim Parsell Memorial Scholarship Returns for WordCamp US 2022\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"https://wordpressfoundation.org/?p=262042\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:108:\"https://wordpressfoundation.org/news/2022/the-kim-parsell-memorial-scholarship-returns-for-wordcamp-us-2022/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1712:\"<p>The wait is over! WordCamp US is once again being held as an in-person, and with that the WordPress Foundation’s Kim Parsell Memorial Scholarship returns.</p>\n\n\n\n<p>Kim’s commitment and valuable contributions to the WordPress open source project are honored at each in-person WordCamp US by the WordPress Foundation. The Foundation’s goal is to further the efforts of other contributor’s demonstrating Kim’s spirit by helping to ease the burden that travel can bring.</p>\n\n\n\n<p><strong>This scholarship is awarded to someone who:</strong></p>\n\n\n\n<ul><li>Identifies as a woman.</li><li>Is a WordPress contributor.</li><li>Has never attended WordCamp US before.</li><li>Requires financial assistance to attend.</li></ul>\n\n\n\n<p>This scholarship provides financial assistance so that the recipient can attend WordCamp US, including travel from the recipient’s home city, hotel stay for the duration of the event, and a ticket to WordCamp US.</p>\n\n\n\n<p>Finally, since the WordPress Foundation was unable to offer the scholarship in 2020 and 2021 due to the COVID-19 pandemic, <strong>this year only there will be three (3) scholarships awarded</strong> for 2022, 2021, and 2020.</p>\n\n\n\n<p>If you meet these requirements and would like to be considered, please <strong>apply no later than Sunday, June 26, 2022</strong> at 12 am Pacific. All applicants will be notified by July 5, 2022.</p>\n\n\n\n<p>For more details, please visit the WordPress Foundation’s <a href=\"https://wordpressfoundation.org/projects/kim-parsell-memorial-scholarship/\">About the Kim Parsell Memorial Scholarship</a> page.</p>\n\n\n\n<p><a href=\"https://wordcampcentral.survey.fm/wcus-kim-2022\">Apply for the scholarship today.</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 18 May 2022 20:42:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Cate DeRosia\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"Post Status: This Week at WordPress.org (May 16, 2022)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=97849\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://poststatus.com/this-week-at-wordpress-org-may-16-2022/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:15949:\"<p class=\"has-theme-palette-7-background-color has-background\">Each week we are highlighting the news from WordPress.org that you don\'t want to miss.  If you or your company create products or services that use WordPress, we\'ve got the news you need to know. Be sure to share this resource with your product and project managers. <br /><br /><strong>Are you interested in giving back and contributing your time and skills to WordPress.org?</strong> <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f64f.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/support/article/contributing-to-wordpress/\">Start Here ›</a><br /><br /><strong>Get our weekly WordPress community news digest</strong> — Post Status\' <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> — covering the WP/Woo news plus significant writing and podcasts. It\'s also available in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f48c.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n\n\n\n<h2 id=\"h-news\">News</h2>\n\n\n\n<ul><li><a href=\"https://wordpress.org/news/2022/05/wordpress-6-0-release-candidate-2-rc2-now-available-for-testing/\"><a href=\"https://wordpress.org/news/2022/05/wordpress-6-0-release-candidate-3-rc3-now-available-for-testing/\">WordPress 6.0 Release Candidate 3 (RC3) Now Available for Testing</a></a></li><li><a href=\"https://make.wordpress.org/core/2022/05/03/wordpress-6-0-field-guide/\">WordPress 6.0 Field Guide</a></li><li><a href=\"https://wordpress.org/news/2022/05/episode-31-open-source-accessibility-celebrating-global-accessibility-awareness-day-with-guest-joe-devon/\">WP Briefing: Episode 31: Open Source & Accessibility– Celebrating Global Accessibility Awareness Day With Guest Joe Devon</a></li></ul>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_a98156-c2\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"wp-block-columns\">\n<div class=\"wp-block-column\">\n<h2 id=\"h-accessibility\"><a href=\"https://make.wordpress.org/accessibility\">Accessibility</a></h2>\n\n\n\n<ul><li>Request for feedback on the&nbsp;<a href=\"https://make.wordpress.org/project/2022/04/01/discussion-contrib-handbook-part-1/\">WordPress Accessibility Statement</a>.</li></ul>\n\n\n\n<h2 id=\"h-central\"><a href=\"https://central.wordcamp.org\">Central</a></h2>\n\n\n\n<ul><li><a href=\"https://central.wordcamp.org/news/2022/05/wordcamp-europe-2022-is-just-around-the-corner/\">WordCamp Europe 2022 is just around the corner</a></li><li><a href=\"https://central.wordcamp.org/news/2022/05/join-the-european-wordpress-community-in-porto-portugal/\">Join the European WordPress Community in Porto, Portugal!</a></li></ul>\n\n\n\n<h2 id=\"h-core\"><a href=\"https://make.wordpress.org/core\">Core</a> </h2>\n\n\n\n<p>Reminder: <a href=\"https://developer.wordpress.org/block-editor/contributors/versions-in-wordpress/\">Gutenberg 13.0 ships with WordPress 6.0</a>.</p>\n\n\n\n<ul><li><a href=\"https://docs.google.com/forms/d/e/1FAIpQLSenO7SibDfYYTivz46YGDoeXcY64H_3Ur_x8taze7Hzi9U11g/viewform\">WordPress Hosting Image/Storage questions</a> </li><li><a href=\"https://github.com/WordPress/performance/issues/160\">Ensure WebP/Image/Optimization plugins can integrate & use existing WebP images </a></li><li><a href=\"https://github.com/WordPress/performance/issues/289\">Research: Impact of additional WebP images on upload</a></li><li><a href=\"https://github.com/WordPress/performance/issues/290\">Research: WebP compatibility</a></li><li><a href=\"https://github.com/WordPress/wordpress-develop/pull/2722\">Prime users in cache in WP_Query </a></li><li><a href=\"https://docs.google.com/document/d/1NzURb3u-KZTgYYHK9Gx_KPvSCX4N8Ci3oZfLsfVF7Tk/edit\">Measurement overview doc</a></li><li><a href=\"https://docs.google.com/document/d/1elY0vgrLU2373mX3jSUj_vFZeGDyhED1WMPYwzSYiVA/edit\">Capturing front-end performance metrics in WordPress doc</a> </li><li><a href=\"https://github.com/WordPress/performance/pull/330\">Module proposal workflow</a></li><li><a href=\"https://core.trac.wordpress.org/ticket/55749\">Large-site inefficiency in REST users endpoint used by Gutenberg editor</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/16/a-week-in-core-may-16-2022/\">A Week in Core – May 16, 2022</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/12/whats-new-in-gutenberg-13-2-may-11/\">What’s new in Gutenberg 13.2? (May 11)</a></li></ul>\n\n\n\n<h3 id=\"h-devnotes\">DevNotes</h3>\n\n\n\n<p>Leading up to releasing WordPress 6.0, DevNotes and release-related information will remain.</p>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2022/05/03/wordpress-6-0-field-guide/\">WordPress 6.0 Field Guide</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/05/block-locking-settings-in-wordpress-6-0/\">Block Locking Settings in WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/04/wordpress-6-0-release-candidate-phase/\">WordPress 6.0 Release Candidate Phase</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/03/miscellaneous-dev-notes-for-wordpress-6-0/\">Miscellaneous Dev Notes for WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/03/block-editor-miscellaneous-dev-notes-for-wordpress-6-0/\">Block Editor miscellaneous Dev Notes for WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/03/page-creation-patterns-in-wordpress-6-0/\">Page creation patterns in WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/03/global-styles-variations-in-wordpress-6-0/\">Global Styles variations in WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/03/separator-block-updated-to-use-block-supports-color-settings/\">Separator block: Updated to use block supports color settings</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/03/block-markup-updates-for-image-quote-list-and-group-blocks/\">Block markup updates for image, quote, list, and group blocks</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/03/support-for-handling-resolution-errors-for-editor-data-module/\">Support for handling resolution errors for Editor data module</a></li><li><a href=\"https://make.wordpress.org/core/2022/04/28/taxonomy-performance-improvements-in-wordpress-6-0/\" target=\"_blank\" rel=\"noreferrer noopener\">Taxonomy performance improvements in WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/04/27/changes-to-do_parse_request-filter-in-wordpress-6-0/\">Changes to the do_parse_request filter in WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/04/29/caching-improvements-in-wordpress-6-0/\">Caching improvements in WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/04/27/new-filter-to-modify-content-images-in-wordpress-6-0/\">New filter to modify content images in WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/02/media-storing-file-size-as-part-of-metadata/\">Media: storing file size as part of the metadata</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/05/updates-to-the-wordpress-create-block-templating-system/\">Updates to the @wordpress/create-block templating system</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/02/object-type-specific-registration-hooks-in-6-0/\">Object type-specific registration hooks in 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/04/28/taxonomy-performance-improvements-in-wordpress-6-0/\">Taxonomy performance improvements in WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/02/new-features-for-working-with-patterns-and-themes-in-wordpress-6-0/\">New features for working with patterns and themes in WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/02/theme-export-in-wordpress-6-0/\">Theme export in WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/04/29/wp_user_query-now-accepts-fields-options-in-wordpress-6-0/\">WP_User_Query now accepts fields options in WordPress 6.0&nbsp;</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/02/performance-increase-for-sites-with-large-user-counts-now-also-available-on-single-site/\">Performance increase for sites with large user counts (now also available on a single site)</a></li></ul>\n\n\n\n<h2 id=\"h-docs\"><a href=\"https://make.wordpress.org/docs\">Docs</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/updates/2022/05/16/documentation-team-update-may-16-2022/\">Documentation Team Update – May 16, 2022</a></li></ul>\n\n\n\n<h3 id=\"h-support-docs\"><a href=\"https://wordpress.org/support/articles\">Support Docs:</a></h3>\n\n\n\n<ul><li><a href=\"https://wordpress.org/support/article/working-with-blocks/\">Working with blocks</a></li></ul>\n\n\n\n<h3 id=\"h-developer-docs\">Developer Docs: </h3>\n\n\n\n<ul><li><a href=\"https://developer.wordpress.org/block-editor/how-to-guides/data-basics/4-building-a-create-page-form/\">Part 4: Building a <em>Create page</em> form</a></li></ul>\n</div>\n\n\n\n<div class=\"wp-block-column\">\n<h2 id=\"h-community\"><a href=\"https://make.wordpress.org/community\">Community</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/community/2022/04/22/wpdiversity-is-expanding-to-apac/\"></a><a href=\"https://make.wordpress.org/community/2022/05/11/join-the-community-team-for-a-wpdiversity-writing-sprint-may-23-to-may-30/\">Join the Community Team for a #WPDiversity Writing Sprint: May 23 to May 30</a></li></ul>\n\n\n\n<h2 id=\"h-design\"><a href=\"https://make.wordpress.org/design\">Design</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/design/2022/05/13/poll-finding-a-new-meeting-time/\">Poll: Finding a new meeting time</a></li></ul>\n\n\n\n<h2 id=\"h-hosting\"><a href=\"https://make.wordpress.org/hosting\">Hosting</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/hosting/2022/05/04/get-ready-for-wordpress-6-0/\">Get ready for WordPress 6.0</a></li></ul>\n\n\n\n<h2 id=\"h-meta\"><a href=\"https://make.wordpress.org/meta\">Meta</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/meta/2022/04/28/proposal-make-wordpress-team-or-project-updates/\">Proposal: Make WordPress Team or Project Updates</a></li></ul>\n\n\n\n<h2 id=\"h-mobile\"><a href=\"https://make.wordpress.org/mobile\">Mobile</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/updates/2022/05/18/mobile-team-update-may-18th-3/\">Mobile Team Update – May 18th</a></li><li><a href=\"https://make.wordpress.org/mobile/2022/05/17/call-for-testing-wordpress-for-android-19-9/\">Call for Testing: WordPress for Android 19.9</a></li><li><a href=\"https://make.wordpress.org/mobile/2022/05/16/call-for-testing-wordpress-for-ios-19-9/\">Call for Testing: WordPress for iOS 19.9</a></li></ul>\n\n\n\n<h2 id=\"h-plugins\"><a href=\"https://make.wordpress.org/plugins\">Plugins</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/updates/2022/05/17/plugin-review-team-update-16-may-2022/\">Plugin Review Team Update: 16 May 2022</a></li></ul>\n\n\n\n<h2 id=\"h-polyglots\"><a href=\"https://make.wordpress.org/polyglots\">Polyglots</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/polyglots/2022/05/02/wordpress-6-0-ready-to-be-translated/\">WordPress 6.0 ready to be translated</a></li></ul>\n\n\n\n<h2 id=\"h-project\"><a href=\"https://make.wordpress.org/project\">Project</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/project/2022/04/29/discussion-contrib-handbook-part-2/\">Discussion: Contrib Handbook, Part 2</a></li><li><a href=\"https://make.wordpress.org/project/2022/04/01/discussion-contrib-handbook-part-1/\">Discussion: Contrib Handbook, Part 1</a></li></ul>\n\n\n\n<h2 id=\"h-test\"><a href=\"https://make.wordpress.org/test\">Test</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/test/2022/04/28/fse-program-testing-call-14-rallying-recipe-reviewers/\">FSE Program Testing Call #14: Rallying Recipe Reviewers</a></li></ul>\n\n\n\n<h2 id=\"h-themes\"><a href=\"https://make.wordpress.org/themes\">Themes</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/themes/2022/04/28/latest-changes-in-gutenberg-themes-13-0-release/\">Latest changes in Gutenberg + Themes: 13.0 release</a></li><li><a href=\"https://make.wordpress.org/updates/2022/05/10/themes-team-update-may-10-2022/\">Themes team update May 10, 2022</a></li></ul>\n\n\n\n<h2 id=\"h-support\"><a href=\"https://make.wordpress.org/support\">Support</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/support/2022/04/off-forum-support-requests/\">Off forum support requests</a></li></ul>\n\n\n\n<h2 id=\"h-training\"><a href=\"https://make.wordpress.org/training\">Training</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/training/2022/04/19/migrating-contributor-training-to-learn-wordpress/\"></a><a href=\"https://make.wordpress.org/training/2022/05/03/may-2022-sprint/\">May 2022 Sprint</a></li><li><a href=\"https://make.wordpress.org/training/2022/05/05/the-training-team-faculty-program-is-now-live/\">The Training Team Faculty Program is now live</a></li></ul>\n\n\n\n<h4 id=\"h-social-learning-spaces\">Social Learning Spaces:</h4>\n\n\n\n<ul><li><a href=\"https://learn.wordpress.org/?meeting=open-source-principles-and-wordpress\"><a href=\"https://learn.wordpress.org/?meeting=i-want-a-website-not-a-blog\">I want a Website, not a Blog!</a></a></li><li><a href=\"https://learn.wordpress.org/?meeting=open-source-principles-and-wordpress\"><a href=\"https://learn.wordpress.org/?meeting=bloggers-own-your-content-and-share-it-everywhere\">Bloggers: Own your Content and Share it Everywhere</a></a></li><li><a href=\"https://learn.wordpress.org/?meeting=open-source-principles-and-wordpress\"><a href=\"https://learn.wordpress.org/?meeting=hello-blocks-creating-a-custom-block\">Hello Blocks! Creating a Custom Block</a></a></li><li><a href=\"https://learn.wordpress.org/?meeting=open-source-principles-and-wordpress\"><a href=\"https://learn.wordpress.org/?meeting=design-with-me-create-a-simple-website-for-your-small-business\">Design With Me: Create a Simple Website for your Small Business</a></a></li></ul>\n</div>\n</div>\n\n\n\n<h2 id=\"5ftf\"><a href=\"https://wordpress.org/five-for-the-future/\">Five for the Future</a></h2>\n\n\n\n<p>What\'s happening specific to Five for the Future? Provide your feedback on these posts:</p>\n\n\n\n<ul><li><a href=\"https://github.com/WordPress/five-for-the-future/issues/194\">Default workflow for team membership lifecycle? </a></li><li><a href=\"https://github.com/WordPress/five-for-the-future/issues/192\">Add activity when Meetup organizers host events</a></li><li><a href=\"https://github.com/WordPress/five-for-the-future/issues/189\">Update Usermeta with latest 5ftf contribution.</a></li></ul>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile has-background\"><a href=\"https://poststatus.com/\"><img src=\"https://cdn.poststatus.com/wp-content/uploads/2021/09/vertical-post-status-logo-250.png\" alt=\"Post Status\" class=\"wp-image-85823 size-full\" /></a><div class=\"wp-block-media-text__content\">\n<p class=\"has-text-align-left has-normal-font-size\" id=\"h-get-ready-for-remote-work\">You — and <a href=\"https://poststatus.com/business-membership/\">your whole team</a> can <a href=\"https://poststatus.com/post-status-membership-club/\">Join Post Status</a> too!</p>\n\n\n\n<p class=\"has-text-align-left has-small-font-size\"><strong>Build your network. Learn with others. Find your next job — or your next hire.</strong> Read the <strong>Post Status</strong> <a href=\"https://poststatus.com/newsletter/\">newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/2709.png\" alt=\"✉\" class=\"wp-smiley\" /> Listen to <a href=\"https://poststatus.com/podcasts/\">podcasts</a>. <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f399.png\" alt=\"?\" class=\"wp-smiley\" /> Follow <a href=\"https://twitter.com/post_status/\">@Post_Status</a>. <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f426.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n</div></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 18 May 2022 20:15:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Courtney Robertson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:126:\"WPTavern: Software Freedom Conservancy Receives Court Ruling Affirming GPL as Both Copyright License and Contractual Agreement\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=134452\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:137:\"https://wptavern.com/software-freedom-conservancy-receives-court-ruling-affirming-gpl-as-both-copyright-license-and-contractual-agreement\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4584:\"<p>The <a href=\"https://sfconservancy.org/\">Software Freedom Conservancy</a> (SFC),  a non-profit that provides infrastructure support for free and open source software projects, has received a favorable ruling in its <a href=\"https://wptavern.com/software-freedom-conservancy-takes-on-vizio-in-lawsuit-alleging-gpl-violations\">right-to-repair lawsuit against Vizio</a>, an American TV manufacturer. The SFC alleges that Vizio has demonstrated “repeated failures to fulfill even the basic requirements of the General Public License (GPL),&#8221; after the company refused to provide the source code for software with copyleft licenses that it bundles with its products.</p>\n\n\n\n<p>Vizio had filed a request to “remove” the case from California State Court into U.S. Federal Court. After hearing oral arguments from both sides, the court has granted SFC&#8217;s motion to remand the case back to California State Court. </p>\n\n\n\n<p>In the <a href=\"https://storage.courtlistener.com/recap/gov.uscourts.cacd.837808/gov.uscourts.cacd.837808.30.0.pdf\">ruling</a>, US District Court judge Josephine L. Staton stated that the GPL introduces &#8220;an additional contractual promise separate and distinct from any rights provided by the copyright laws:&#8221;</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>The Court finds Versata’s reasoning persuasive, and it finds here, as the court<br />found there, that the enforcement of “an additional contractual promise separate and distinct from any rights provided by the copyright laws” amounts to an “extra element,” and therefore, SFC’s claims are not preempted. Id. at *5. There is an extra element to SFC’s claims because SFC is asserting, as a third-party beneficiary of the GPL Agreements, that it is entitled to receive source code under the terms of those agreements. There is no right to receive certain works—or source code in particular—under the Copyright Act; indeed, the Act’s primary purpose is to limit who may reproduce, prepare derivative works, distribute, and display protected works. As SFC points out in its briefing, the right to receive the source code would appear to be “the very opposite” of those exclusive rights. (Reply, Doc. 26, at 17.) The fact that SFC claims status as a third-party beneficiary to the GPL Agreements and not the actual copyright holder—and therefore, has no authority to impose limitations on the reproduction and distribution of the software—only underscores that the contractual right at issue is qualitatively different from the rights under the Copyright Act. Thus, there can be no question that the extra element—that SFC is third-party enforcing its right to receive source code under the terms of a contract—transforms the nature of the action.</p></blockquote>\n\n\n\n<p>One of the functions of the SFC is to assist member projects in enforcing the terms of FLOSS licenses, including through litigation. This particular case is unique because the organization is presenting this lawsuit on behalf of individual consumers, as opposed to the traditional path of defending copyright holders of the GPL code in question.</p>\n\n\n\n<p>“The ruling is a watershed moment in the history of copyleft licensing,&#8221; SFC executive director Karen Sandler said. &#8220;This ruling shows that the GPL agreements function both as copyright licenses and as contractual agreements.&#8221;</p>\n\n\n\n<p>SFC  contends that many electronics products are built for planned premature obsolescence and that companies often do this by violating the GPL. If the product is bundled with copyleft software, a consumer has the right to modify, improve, and repair the software. For this the be possible, the companies producing the products must make the source code available. This also enables consumers to find skilled people to repair their products when a device fails after updates have been disabled so that products do not become nonfunctional. This ruling is not just a major win for the GPL but also for consumers who may not know that companies violating the GPL significantly impact their ability to find repairs for electronic products.</p>\n\n\n\n<p>“Software Freedom Conservancy looks forward to our opportunity to prove, in state court, our third-party beneficiary right to the complete, corresponding source code as defined by the GPL and related agreements,” Sandler said. “This claim is central to the right to software repair, as it allows users to exercise the right to copy, share, modify, and reinstall the software on the devices that they receive.”</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 18 May 2022 18:03:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"WPTavern: #27 – Ana Segota and Kelly Choyce-Dwan on How To Use the New Pattern Creator\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=134337\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"https://wptavern.com/podcast/27-ana-segota-and-kelly-choyce-dwan-on-how-to-use-the-new-pattern-creator\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:48510:\"<p>On the podcast today we have <a href=\"https://twitter.com/ana_segota\">Ana Segota</a> and <a href=\"https://twitter.com/ryelle\">Kelly Choyce-Dwan</a>.</p>\n\n\n\n<p>I suspect that you might have heard about block patterns, but if you haven’t, you’re in for a treat. Patterns are collections of blocks which anyone can assemble for easy reuse at a later date. You can make them as simple or as complex as you, style them and save them away. When you’re ready to reuse them, they’re just one click away. It’s a great time saver.</p>\n\n\n\n<p>Having said that, not all of us are great at design, or perhaps we’ve just not had the time to explore how block patterns are created. Wouldn’t it be great if there was a source of patterns which we could use in our WordPress websites, safe in the knowledge that they were completely free to use? There is, &nbsp; and it’s called the Pattern Directory. You simply find a pattern you like and copy / paste it into your site.</p>\n\n\n\n<p>You could stop there, but you could also use this as a way of learning how blocks are constructed. Open up the pattern to see how it’s laid out. What settings were used to create the styling?</p>\n\n\n\n<p>Right now, the Pattern Directory is quite small. There’s a few hundred patterns to explore, but it could certainly do with some more contributions, and that is what this podcast is all about.</p>\n\n\n\n<p>The Pattern Creator is the way to create patterns so that they can be submitted, reviewed, and hopefully accepted into the Pattern Directory.</p>\n\n\n\n<p>We’ve got two perspectives on the podcast today from people who come at it from different angles.</p>\n\n\n\n<p>Ana is a self taught WordPress themer and designer who is making use of patterns at <a href=\"https://www.anarieldesign.com/\">Anariel Design</a>, her website building business, and Kelly is an Automattician who has been working with the team building the Pattern Directory and Creator.</p>\n\n\n\n<p>We talk about how the Creator works, how you can submit your patterns and what constraints are there for having your submissions accepted.</p>\n\n\n\n<p>So, if you’re curious about how patterns can speed up your website building workflow, this episode is for you.</p>\n\n\n\n<h2>Useful links.</h2>\n\n\n\n<p><a href=\"https://wordpress.org/news/2022/03/get-creative-with-the-all-new-pattern-creator/\">https://wordpress.org/news/2022/03/get-creative-with-the-all-new-pattern-creator/</a></p>\n\n\n\n<p><a href=\"https://wordpress.org/patterns/\">https://wordpress.org/patterns/</a></p>\n\n\n\n<p><a href=\"https://wordpress.org/patterns/about/\">https://wordpress.org/patterns/about/</a></p>\n\n\n\n<p><a href=\"https://wordpress.org/patterns/new-pattern/\">https://wordpress.org/patterns/new-pattern/</a></p>\n\n\n\n<p>Ana is <a href=\"https://twitter.com/ana_segota\">@ana_segota</a> on Twitter, and @anasegota on the Make Slack Channel.</p>\n\n\n\n<p>Kelly is <a href=\"https://twitter.com/ryelle\">@ryelle</a> on both Twitter and the Make Slack Channel.</p>\n\n\n\nTranscript<div>\n<p>[00:00:00] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley. Jukebox is a podcast, which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case, learning about the new pattern creator.</p>\n\n\n\n<p>If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to WP Tavern.com forward slash feed forward slash podcast. And you can copy that URL into most podcast players.</p>\n\n\n\n<p>If you&#8217;ve got a topic that you&#8217;d like us to feature on the podcast, well, I&#8217;m very keen to hear from you, and hopefully get you, or your idea featured on the show. Head over to WP Tavern.com forward slash contact forward slash jukebox, and use the contact form there.</p>\n\n\n\n<p>So on the podcast today, we have Ana Segota and Kelly Choyce-Dwan. I suspect that you&#8217;ve heard about block patterns, but if you haven&#8217;t, you&#8217;re in for a treat.</p>\n\n\n\n<p>Patterns are collections of blocks which anyone can assemble for easy reuse at a later date. You can make them as simple or as complex as you like. Style them and save them away. When you&#8217;re ready to reuse them, they&#8217;re just one click away. It&#8217;s a great time-saver .</p>\n\n\n\n<p>Having said that, not all of us are great at design, or perhaps we&#8217;ve just not had the time to explore how block patterns are created. Wouldn&#8217;t it be great if there was a source of patterns which we could use in our WordPress websites, safe in the knowledge that they were completely free to use? There is, and it&#8217;s called the pattern directory. You simply find a pattern that you like and copy paste it into your site.</p>\n\n\n\n<p>You could stop there, but you could also use this as a way of learning how blocks are constructed. Open up the pattern and see how it&#8217;s laid out. What settings we&#8217;ll use to create the styling?</p>\n\n\n\n<p>Right now, the pattern directory is quite small. There&#8217;s a few hundred pounds to explore, but it could certainly do with some more contributions. And that is what this podcast is about. The pattern creator is the way to create patterns so that they can be submitted, reviewed, and hopefully accepted into the Pattern Directory. We&#8217;ve got two perspectives on the podcast today from people who come at it from different angles.</p>\n\n\n\n<p>Ana is a self-taught WordPress themer, and a designer who is making use of patterns in her website builds. And Kelly is an Automattician who has been working with the team building the Pattern Directory and Creator. We talk about how the creator works, how you can submit your patterns and what constraints are there for having your submissions accepted.</p>\n\n\n\n<p>So, if you&#8217;re curious about how patterns can speed up your website building workflow, this episode is for you.</p>\n\n\n\n<p>If you&#8217;re interested in finding out more, you can find all the links in the show notes by heading over to WP tavern.com forward slash podcast, where you&#8217;ll find all the other episodes as well.</p>\n\n\n\n<p>And so without further delay, I bring you Ana Segota and Kelly Choyce-Dwan.</p>\n\n\n\n<p>I am joined on the podcast today by Ana Segota and Kelly Choyce-Dwan. Hello.</p>\n\n\n\n<p>[00:04:01] <strong>Ana Segota:</strong> Hi.</p>\n\n\n\n<p>[00:04:01] <strong>Kelly Choyce-Dwan:</strong> Hello.</p>\n\n\n\n<p>[00:04:02] <strong>Nathan Wrigley:</strong> Very nice to have you both here. As we always do at the beginning of the podcast, I&#8217;m going to give both of you an opportunity to introduce yourselves, to give us a bit of an orientation.</p>\n\n\n\n<p>If you&#8217;ve listened to the introduction to this podcast, you probably know that we&#8217;re going to be talking about the pattern creator. And so it would be important to know why the two guests today are coming on talking about that. So, we&#8217;ll take it one at a time. We&#8217;ll begin with Ana. Ana, just tell us a little bit about your journey with WordPress and how come it is that you became involved with the pattern creator.</p>\n\n\n\n<p>[00:04:33] <strong>Ana Segota:</strong> So, hi Nathan, nice to meet you and thank you for inviting me. So I&#8217;m Ana Segota, and I am a themer, and I love creating WordPress themes using block patterns. I always was more as a designer, but I learned to code to be able to create WordPress themes myself, but now having a block patterns is such a relief for me because I can concentrate on design more.</p>\n\n\n\n<p>[00:05:04] <strong>Nathan Wrigley:</strong> That&#8217;s really nice. Thank you. Yeah. The intention of the tool is to make all of those decisions a little bit easier. So it&#8217;s nice, nice to know that in your case, it&#8217;s working. So, okay that&#8217;s going to be one perspective that we&#8217;ve got in the show today. And another perspective comes from Kelly. So Kelly, just spend a moment, tell us who you are please.</p>\n\n\n\n<p>[00:05:21] <strong>Kelly Choyce-Dwan:</strong> Sure. So my name is Kelly Choyce-Dwan, also ryelle online. I work at Automattic and I have for over seven years. I started with WordPress in 2009, and I&#8217;m now working on the Meta team where my focus recently has been on the pattern directory and pattern creator.</p>\n\n\n\n<p>[00:05:41] <strong>Nathan Wrigley:</strong> Now many people listening to this podcast will be very up-to-date users of WordPress. There&#8217;ll be using the tools that are shipping all of the time, and they may well have discovered patterns and be using them to great effect.</p>\n\n\n\n<p>On the other hand, I suspect that there&#8217;ll be a fair amount of people who as yet have not delved into patterns. They may know what they are. They may not. So I&#8217;m wondering if we could really just rewind a little bit, make no assumptions about anybody&#8217;s knowledge about patterns and just lay out what they are. So it&#8217;s a very general question. Either of you feel free to answer it. What are patterns in WordPress and why might you wish to use them?</p>\n\n\n\n<p>[00:06:24] <strong>Ana Segota:</strong> So for me block patterns, I like predefined and ready to use layout that you can click or drug and create pages. It&#8217;s like a collection of blocks arranged together to help you create different layouts. If you&#8217;ve used sometimes page builders, or Elementor templates, for example, it&#8217;s the same thing. You can use them on your website. You can adjust them, change the layout, change the colors. And I think they&#8217;re very useful.</p>\n\n\n\n<p>[00:06:59] <strong>Nathan Wrigley:</strong> Thank you. So they are basically quick ways to build websites. You&#8217;re using other people&#8217;s predefined layouts. The work, in great measure, has been done for you. You can discover collections of blocks, which are generically called patterns, and you can click on those and import them into your post or page or whatever it might be.</p>\n\n\n\n<p>So it speeds things up. I&#8217;m curious, for those of you, who&#8217;ve never used this before again, how do you actually build them? What&#8217;s the process that one might find themselves in, and bear in mind, we might be speaking to users of WordPress who are familiar with page builders, and don&#8217;t really find themselves interacting with the WordPress block editor.</p>\n\n\n\n<p>So we may need to have a little bit of a description around there. What are we actually doing? How do we create and build patterns?</p>\n\n\n\n<p>[00:07:51] <strong>Ana Segota:</strong> Okay. so mostly, I&#8217;m building block patterns for the themes. As a background, I first start, with niche, different niche, and what can be useful for that niche. And then I start creating block patterns directly in the editor, where you have all the options of block that you can combine in one block pattern.</p>\n\n\n\n<p>So mostly I started with a group block, where I put then columns or cover or images, and start creating different ideas and different layout.</p>\n\n\n\n<p>[00:08:34] <strong>Nathan Wrigley:</strong> Are you able to save those, as WordPress currently stands? Are you able to save those and I&#8217;ll stay with Ana. Are you able to save those Ana so that they can be reused on other websites. In other words, can you save more time by having your own little collection of blocks, which you then can use on this website over here and this other completely different website?</p>\n\n\n\n<p>[00:08:58] <strong>Ana Segota:</strong> Maybe Kelly knows better, the other way, but what I know you can always copy the block you have and paste it on other website. Or you can export it. But not sure if you can save it inside the editor for like a gallery or something. I&#8217;m not sure that you can, or if you can do this, maybe Kelly knows that.</p>\n\n\n\n<p>[00:09:22] <strong>Kelly Choyce-Dwan:</strong> Well, I know that you can, if you copy the block code into like a code file, the you can register it that way, but it requires code.</p>\n\n\n\n<p>[00:09:33] <strong>Ana Segota:</strong> I think, there is no easy way to save it in a gallery for the beginner user, for example.</p>\n\n\n\n<p>[00:09:41] <strong>Nathan Wrigley:</strong> At the moment, it feels as though it is the domain of people who are fairly experienced with WordPress. All of the tooling, with things like Elementor that you described, where you, you might have a private cloud of things that you&#8217;ve created in the past, and you can log in, and there&#8217;s a cloud service attached and you can download those to all of the other websites. We&#8217;re not quite at that point yet, although maybe some of the discussion that we&#8217;ll have today will revolve around that.</p>\n\n\n\n<p>[00:10:10] <strong>Ana Segota:</strong> Yeah, I would love that.</p>\n\n\n\n<p>[00:10:12] <strong>Nathan Wrigley:</strong> Yeah, that would be a really nice addition.</p>\n\n\n\n<p>[00:10:14] <strong>Ana Segota:</strong> But I think the, pattern creator is doing some kind of saving those block patterns and one place where you can reuse it. But we will come to it.</p>\n\n\n\n<p>[00:10:24] <strong>Nathan Wrigley:</strong> That&#8217;s okay. We&#8217;ll come to that in a moment. Just to say, patterns are collections of blocks and you piece them together, akin to a jigsaw and you build up designs, and style those designs, add images, add forms, add whatever it might be, background, color, padding, and so on, until you&#8217;ve got something that you&#8217;d like to look off. And at the moment, it probably lives within one WordPress website. But you can copy and paste that over somewhere else, but there&#8217;s no sort of cloud functionality.</p>\n\n\n\n<p>And so, to the main conversation today, which is the pattern creator. Just so that you know, the links will be in the show notes to everything that we talk about today. And the pattern creator may well be something that you want to go and play with because it enables you to do a very large amount more than potentially you can do in your normal WordPress website. So, whoever wishes to take this. What is the pattern creator? Hopefully we&#8217;ll be providing people with the link so they can find that. That&#8217;s all good. But what&#8217;s the purpose of it? Why was it built? Why did the WordPress team decide that a tool like this needed to exist?</p>\n\n\n\n<p>[00:11:33] <strong>Kelly Choyce-Dwan:</strong> So the pattern creator is a place to go and create patterns to share with anyone who uses WordPress, and it was created to make the process of making a sharing patterns easier. It&#8217;s a place that you can go and make a pattern and you know that it can be reused without having to write that code.</p>\n\n\n\n<p>[00:11:54] <strong>Nathan Wrigley:</strong> So, at the moment it&#8217;s not only is it a place where you can go and create patterns. It&#8217;s a place where you can go and discover other people&#8217;s already created patterns. And if you&#8217;re, if you&#8217;re coming to this podcast from another page builder, think about it as rows. You&#8217;re essentially grabbing rows from websites or component parts of websites. And so it serves that double purpose. Not only can you create your own, but you can also go and freely download other people&#8217;s work. Have I got that right? Have I misstated that?</p>\n\n\n\n<p>[00:12:25] <strong>Kelly Choyce-Dwan:</strong> That&#8217;s correct?</p>\n\n\n\n<p>[00:12:26] <strong>Nathan Wrigley:</strong> So in terms of how the editor works, we need to go to the website, the pattern creator website. And once we&#8217;re there, my understanding is that you need a, a wordpress.org account.</p>\n\n\n\n<p>Once you&#8217;ve got yourself, a wordpress.org account, you can log in and you are presented with something which looks very, very similar to the usual WordPress block editor interface. It&#8217;s a little bit more spartan because the menu on the left kind of basically doesn&#8217;t exist. So all of those options for posts and pages and what have you are gone. Let&#8217;s talk about the design decisions.</p>\n\n\n\n<p>So the menu on the left is gone. We&#8217;ve got the option to add blocks. Are we just dealing with a subset of the core blocks or can we add any of the core blocks?</p>\n\n\n\n<p>[00:13:15] <strong>Kelly Choyce-Dwan:</strong> It is a subset currently, because we don&#8217;t have the dynamic content that might be on your website. So we can&#8217;t replicate the full experience of using that block. But almost all of the core blocks are available.</p>\n\n\n\n<p>[00:13:30] <strong>Nathan Wrigley:</strong> Okay, so you can log in and you can start building out your blocks, or rather, I should say you can start building out your patterns. Then presumably there&#8217;s some kind of save process. And if you&#8217;re happy with things, can you use this if you chose to do it this way, can you use this as a private repository of your own blocks, that you&#8217;re maybe not ready to share with the world? Maybe they have to be kept in a draft state or something like that. Could it be used in that way? I know that&#8217;s not the intention. The intention is to have them shareable, but you were to design something and be not entirely satisfied with it, could you keep it there and come back to it at a later date and tweak it?</p>\n\n\n\n<p>[00:14:13] <strong>Kelly Choyce-Dwan:</strong> Yeah, totally. You can save things as drafts. Actually, when we were first building it out, one of the ideas was that it could be a private repo for you to put your own patterns in. That isn&#8217;t built yet, but it could be in the future.</p>\n\n\n\n<p>[00:14:26] <strong>Nathan Wrigley:</strong> So there is a kind of workaround to make it a directory of your own, if you simply save things as draft. But that isn&#8217;t the point. The intention is to make it universally available to everybody. And so on.</p>\n\n\n\n<p>Does this require an up to date version of Gutenberg on the backend? So just to be clear, it&#8217;s like a SaaS product. You&#8217;re not installing WordPress anywhere. You are just going to a website and interacting with it. But I&#8217;m just curious to know, as Gutenberg is updated and modified and the blocks change, we&#8217;re several years in, and there&#8217;s been a great deal of change in the way that certain things work.</p>\n\n\n\n<p>Do you have confidence that everything that you build today will look the same in, let&#8217;s say a couple of years time. In other words, do you anticipate that some things may break in the future or are you trying as hard as possible to mitigate against that?</p>\n\n\n\n<p>[00:15:18] <strong>Kelly Choyce-Dwan:</strong> Well, I hope it won&#8217;t, but the pattern creator is using always the stable version of Gutenberg. So it will always be up-to-date when you&#8217;re creating patterns. Patterns created a few months ago, we&#8217;re created with an older version of Gutenberg, but between backwards compatibility block transformation, Gutenberg is trying not to break your content too. So I&#8217;m fairly confident that things will continue to work. If there are patterns that do brake, we have a reporting mechanism for reporting that.</p>\n\n\n\n<p>[00:15:51] <strong>Nathan Wrigley:</strong> So it&#8217;s just Core blocks that we need to worry about. And it&#8217;s a subset of the Core blocks. Now, I&#8217;m looking on the interface at the moment. There&#8217;s the option for me to add a title? Obviously that&#8217;s just for the purposes of knowing what the pattern is that I&#8217;m saving somewhere. And then I can, in the normal way, click the little plus icon and I can add blocks as I choose. Put a group in, put some columns in and so on, and fiddle with those blocks just as I would do on my regular WordPress website.</p>\n\n\n\n<p>And I&#8217;ve got the list view where I can see the stack of all of the different things that. I&#8217;ve created. And then on the right-hand side, you&#8217;ve got a title and a description. Do both of those serve the purpose of showing to somebody, once it&#8217;s been submitted to the pattern directory, which we&#8217;ll get onto in just a moment. Those titles and descriptions would give the people, browsing the pattern directory, some orientation as to what it was about and what it was designed to achieve.</p>\n\n\n\n<p>[00:16:46] <strong>Kelly Choyce-Dwan:</strong> Yeah, that&#8217;s right. The title is the pattern title, and it&#8217;s the same when you&#8217;re in that little sidebar and the top title, they&#8217;re just two inputs for the same thing. Good title would describe what the pattern is, like one of the pattern contains, what it should be used for.</p>\n\n\n\n<p>[00:17:01] <strong>Nathan Wrigley:</strong> Then in order to presumably aid search on the other end in the pattern directory. Currently we have six categories. There&#8217;s no option to create categories of your own. At the minute we look like we&#8217;ve got buttons, columns, gallery, header, images, text, and then there&#8217;s the option to add in keywords, maximum of 10.</p>\n\n\n\n<p>Again, is this all just to help the taxonomy of it, to help assist people on the other side to locate things which you&#8217;ve got buttons in and specifically columns and galleries and so on? Is that the That&#8217;s the sole purpose of that.</p>\n\n\n\n<p>[00:17:34] <strong>Kelly Choyce-Dwan:</strong> That&#8217;s right. And, they&#8217;re also used, those are the same properties that are used in WordPress Core when you&#8217;re registering patterns.</p>\n\n\n\n<p>[00:17:41] <strong>Nathan Wrigley:</strong> So I could spend hours happily building out my new blocks and constructing them up into patterns and saving them away. And once I&#8217;ve got something that I&#8217;m happy with, there&#8217;s a blue submit button at the top right hand corner in the same way that you would have publish in WordPress typically, but this is submit.</p>\n\n\n\n<p>What is the process, what&#8217;s going on there? What is the list of things which happen after that? So I&#8217;m thinking in terms of, I just clicked submit, but presumably at that point, all sorts of other things are set in motion. Maybe it&#8217;s sent to a particular team and people have to authorize things and check that it doesn&#8217;t break any guidelines. And that might be a long list of things that go on in the background there.</p>\n\n\n\n<p>[00:18:24] <strong>Kelly Choyce-Dwan:</strong> Yeah. So when you submit a pattern, it asks you a few things more just to make sure you filled out all of your details. there are a few things that we&#8217;ll check for automatically, making sure you&#8217;re using a decent title. We&#8217;ve had a few patterns that are just called my pattern, which isn&#8217;t helpful for other people. So we detect things like that.</p>\n\n\n\n<p>So after the automated checks, it does get submitted as pending. So it does not automatically approved yet. And there is a pattern review team that will look through the pending patterns and publish things that are valid. Most things do get published. So you probably would get published within a day or two.</p>\n\n\n\n<p>[00:19:02] <strong>Ana Segota:</strong> It&#8217;s mostly hours or a day. I submitted here, so top, one day</p>\n\n\n\n<p>[00:19:08] <strong>Nathan Wrigley:</strong> Yeah, it&#8217;s really quick. A big gripe about the, let&#8217;s say the theme review team or the plugin review team was that there was quite a long wait, sometimes very long. There&#8217;s a lot more complexity, I guess, within a theme, a lot more code floating about. So at the moment. if you submit something, as of, let&#8217;s say May 2022, you&#8217;re very likely to have a decision fairly quickly.</p>\n\n\n\n<p>In terms of that being authorized, what are the guidelines? What are the kinds of things that are allowed and disallowed? In other words, so you mentioned that a good title, a good descriptive title is going to set you on the road to having its, authorized and put on the pattern directory.</p>\n\n\n\n<p>Are there any other guidelines that need to be, you need to be mindful of? Not only in terms of getting it submitted, but things that you don&#8217;t want people to submit because it contravenes certain rules or regulations.</p>\n\n\n\n<p>[00:20:03] <strong>Ana Segota:</strong> I think the most important part is to combine multiple blocks together, so not just to use one block and post it. So multiply blocks together and create some interesting and useful layouts. So maybe front design part and also something that can be creative and useful to the users. Also to highlight the capabilities of the blocks they contain and provide a starting point to customize the content.</p>\n\n\n\n<p>Good pattern book needs to be, has a well-defined purpose too. And for don&#8217;ts, maybe to avoid to design patterns for a single theme. So to think about it to be used in different websites. Not to create a pattern that is like a full page. Or just a simple pattern that is using a paragraph. And I think you need to use photos from the gallery there. You can&#8217;t import your photos or from some other website, and that&#8217;s probably it.</p>\n\n\n\n<p>[00:21:11] <strong>Nathan Wrigley:</strong> So the photos are coming in from, Kelly, maybe you can help us out here. Are they coming in from Openverse?</p>\n\n\n\n<p>[00:21:18] <strong>Kelly Choyce-Dwan:</strong> They are yeah. It&#8217;s all CC0 photos from Openverse. So they&#8217;re able to be used by anyone without any, without worry about crediting people.</p>\n\n\n\n<p>[00:21:27] <strong>Ana Segota:</strong> Yeah, that&#8217;s very helpful.</p>\n\n\n\n<p>[00:21:30] <strong>Nathan Wrigley:</strong> Another podcast episode altogether isn&#8217;t it? The whole Openverse project&#8217;s fabulous. Yeah. so obviously there&#8217;s constraints in terms of the do&#8217;s, you know, it needs to be usable on multiple websites, and so on, just as Ana said, but there&#8217;s some certain don&#8217;ts as well. We&#8217;ve prevented the ability to upload images by just using Openverse images, which is great.</p>\n\n\n\n<p>But also, I guess that would be in terms of the text that you write into paragraph or heading fields, there would be a requirement for it to be, let&#8217;s call it family friendly. You know, we don&#8217;t want anything which might cause anybody any hassle and presumably that&#8217;s a trip wire which the team would immediately reject it on.</p>\n\n\n\n<p>So, okay. Let&#8217;s let&#8217;s imagine that we&#8217;ve built this fabulous pattern. It&#8217;s absolutely hit the guidance on the head and it&#8217;s been approved. What then? Where does it go? Where does it live? How can other people find it?</p>\n\n\n\n<p>[00:22:24] <strong>Kelly Choyce-Dwan:</strong> So it&#8217;s in the pattern directory, which is just wordpress.org/patterns. You can use that website to search through patterns. Once you found a pattern that you like, you&#8217;re able to use it in your own website, just by simply copying it. And there is a copy button on each pattern that you can use to copy the code for it.</p>\n\n\n\n<p>And if you just paste that straight into your editor, you have that pattern.</p>\n\n\n\n<p>[00:22:48] <strong>Nathan Wrigley:</strong> So, you go to the pattern directory, presumably you would then search and filter against the things which you created when you were submitting your pattern. And then there&#8217;s a simple copy and paste button. You copy it. It&#8217;s in the clipboard of your computer and you just go over to your website and in an empty block, there&#8217;s no sort of container or wrapper that you need to stick it in. You literally just paste it into a brand new empty text block and all will work?</p>\n\n\n\n<p>[00:23:18] <strong>Kelly Choyce-Dwan:</strong> Yep.</p>\n\n\n\n<p>[00:23:19] <strong>Ana Segota:</strong> Yeah.</p>\n\n\n\n<p>[00:23:19] <strong>Nathan Wrigley:</strong> Are there any gotchas there? Because that process, whilst it&#8217;s not necessarily quite as optimal as the cloud that we were talking about earlier, where you could actually see it within your WordPress website, which I guess ultimately would be an easier experience?</p>\n\n\n\n<p>Does it always work? Are there any situations where copying and pasting that code has unexpected consequences. I don&#8217;t mean things breaking. I just mean that the styling, for example, something that the theme brings to bear might make things look peculiar and not quite how you intended.</p>\n\n\n\n<p>[00:23:51] <strong>Kelly Choyce-Dwan:</strong> Yeah, I think that&#8217;s possible because it is, I mean it uses the Core blocks. So if your theme styles the core blocks minimally, maybe, you&#8217;ll probably be fine, but if your theme is doing anything really creative with some of the blocks, I suppose you could have some trouble where a quote that you copied from the pattern directory looks totally different on your site.</p>\n\n\n\n<p>[00:24:12] <strong>Ana Segota:</strong> But if you are using a full site editing theme, I think you are good with.</p>\n\n\n\n<p>[00:24:17] <strong>Nathan Wrigley:</strong> It should just work. Yeah. Do you know if there&#8217;s any intention to bring any of this kind of functionality into WordPress Core. And what I&#8217;m meaning by that is that I could hook up my let&#8217;s say wordpress.org account to my website. And then I could create patterns inside my website and then authorize them to be submitted to the pattern directory.</p>\n\n\n\n<p>I feel like that might be quite a useful workflow at some point in the future, because then you&#8217;re not necessarily having to go out and go to a different website in order to create the patterns and publish them and so on. And equally, I wonder if in the future there are any plans to make it so that I can pull these patterns in, in the same way that we described that page builders like Elementor and so on, have their cloud templates and so on, and so forth.</p>\n\n\n\n<p>[00:25:11] <strong>Kelly Choyce-Dwan:</strong> Yeah, I think the second is much more likely than the first. So if you were to create a pattern on your own website. Uh, you might be using any number of blocks that are not Core blocks. So I don&#8217;t know that creating a pattern on your website and pushing it up is on the roadmap at least, because there&#8217;s a lot more gotchas. We can&#8217;t control the media that you&#8217;re using. Like we&#8217;re able to use Open verse images on the pattern creator.</p>\n\n\n\n<p>So there&#8217;s a lot more, a lot more like gotchas that way. But, having an ability to pull patterns from the pattern directory on wordpress.org into your own site. I do think that that is probably going to happen soon.</p>\n\n\n\n<p>Already, you can call out, well already in WordPress 6.0, you&#8217;ll be able to register pattern slugs when you&#8217;re building a theme, and then it will pull down those patterns from the pattern directory. So you can pull patterns like that.</p>\n\n\n\n<p>[00:26:06] <strong>Nathan Wrigley:</strong> Yeah. That&#8217;s, that&#8217;s interesting. So imagine that I&#8217;ve submitted one of my patterns. I&#8217;m very happy with it, but a year or two passes and I now for goodness knows what reason, I now don&#8217;t wish that pattern to be part of the directory. I&#8217;m wondering if either of you have any knowledge about whether things can be removed or once I&#8217;ve submitted it, is it up there for life? And I have essentially given it over to the community in perpetuity.</p>\n\n\n\n<p>[00:26:36] <strong>Kelly Choyce-Dwan:</strong> You can revert your pattern to draft, if you want to take it down. You can also trash it. We&#8217;re not tied to always supporting things the way that the theme and plugin directories are because there isn&#8217;t really as much of a tie to your content and this thing on wordpress.org, because once you copy a pattern down, you have it, you don&#8217;t need to sync back up with the parent. So we don&#8217;t need to, we don&#8217;t have the same issues of keeping something around.</p>\n\n\n\n<p>[00:27:00] <strong>Nathan Wrigley:</strong> Yeah, so you can curate that yourself. You can just, if you like return it to a draft status. So there&#8217;s a permanent connection between the wordpress.org repository that I can access with my user login and password, and the pattern being published. In other words, when I clicked submit, it&#8217;s not just taken from my submission and put into some other SaaS, if you like.</p>\n\n\n\n<p>So my expectation was that when I submitted it, much in the same way that I was submitting a form on a website, that form can then live somewhere else. You know, the form submission can come to me via email. I can&#8217;t rescind that form being sent. But in the directory the submit button and the draft status button is directly connected to whether it&#8217;s on the pattern directory.</p>\n\n\n\n<p>So if I click draft again, it will immediately, without any human supervision, it will suck it out of the directory and mean that it&#8217;s no longer there.</p>\n\n\n\n<p>[00:28:03] <strong>Kelly Choyce-Dwan:</strong> Yeah, that that&#8217;s correct.</p>\n\n\n\n<p>[00:28:05] <strong>Nathan Wrigley:</strong> Yeah, I really didn&#8217;t understand that. I just assumed that I was submitting it rather like a form. Somebody would inspect it, check it into another platform. So that&#8217;s kind of good to know.</p>\n\n\n\n<p>[00:28:15] <strong>Kelly Choyce-Dwan:</strong> Yeah. It also means that you can edit. So if you make your pattern and then you decide that you actually, you&#8217;ve submitted it, it&#8217;s been a week though. And you don&#8217;t like the color of the button. You can make that change. It&#8217;ll submit it back to pending, and it has to go through that review again. But, once it&#8217;s published, your pattern will have the new change now.</p>\n\n\n\n<p>[00:28:34] <strong>Nathan Wrigley:</strong> Okay. So we have to go through the process. Do you have any insight into how popular patterns have become over time? I mean, I still feel that the editing experience for proprietary page builders is something that people are keen for Gutenberg to have. You know, in other words, what you see is literally what you get.</p>\n\n\n\n<p>There&#8217;s no ifs or buts, it&#8217;s just exactly the same on the backend as it is on the front end. And I feel that a lot of people are not moving over to Gutenberg because that experience is not there yet. So, this one may be for Kelly, it may be for Ana. Ana, you might like to draw on, you know, your experience or maybe your friends and colleagues. Is it as usable yet? Are patterns as useful to you as your page builder that you may have used in the past yet? Or if we still got a way to go, what are your, what are your instincts on that?</p>\n\n\n\n<p>[00:29:25] <strong>Ana Segota:</strong> From my point of view, I think the block patterns are now really well made and they can be really useful. And I think they are mostly easier to use them. So for the user&#8217;s point of view, but they come more to the problem where we are starting to use templates, for example. Full site editing and templates. Block patterns are I think easiest part from the whole full site editing,.</p>\n\n\n\n<p>From my experience, mostly they like block patterns but, I think we are still in early stage because there is not a lot of themes that are full site editing themes. And sometimes we also have older themes that we are updating with block patterns, but it&#8217;s like a mix of old way and new way. So I think when we start doing more full site editing themes, it will get easier and user will get to know znd to accept it more.</p>\n\n\n\n<p>But I think block patterns are really useful from the user side, but templates are a bit tricky now, I must say, a bit confusing because we have a two editors now, like site editor and normal editor that they know from past. And they&#8217;re asking why I see now here block pattern, but in the old editor I need to click on the edit template to edit the template. It&#8217;s a bit tricky and confusing at the moment I must confess.</p>\n\n\n\n<p>[00:31:00] <strong>Nathan Wrigley:</strong> We&#8217;re on the cusp of WordPress 6.0 being released, and as each different, a new release comes around, there is more being added and the complexity sometimes goes up and hopefully at some point the complexity will go down again and be more straightforward to use.</p>\n\n\n\n<p>I guess that one of the biggest wins of using patterns and the pattern directory, which you would submit things to with the creator, is that all of this is just free. It&#8217;s completely freely available. You can use it in any which way you&#8217;d like, there&#8217;s no constraints over how you might use it. And if we rewind the clock about, oh, I don&#8217;t know, let&#8217;s go for about 12 or 13 years.</p>\n\n\n\n<p>I imagine that the plug-in directory felt like a similar thing, you know, you would submit your plugin and within a few hours, somebody would say yes. That&#8217;s great, thank you very much. We now know that WordPress has 50,000 plus plugins. The directory whilst being very useful is quite hard, it&#8217;s very difficult to track things down. We&#8217;ve got certain things being recommended because they&#8217;re popular and it may be hard for people to have their bits and pieces discovered.</p>\n\n\n\n<p>I&#8217;m just wondering, Kelly I&#8217;ll fire this one at you. I&#8217;m just wondering if in the future there are plans to make it so that as you submit patterns, there&#8217;s maybe more options around curating it, more taxonomy, terms, greater ways of being able to search and discover things. Because at the moment, it&#8217;s easy.</p>\n\n\n\n<p>There&#8217;s a handful of patterns, well, that&#8217;s not quite true, but you get point. There aren&#8217;t 50,000 of them. But in the future, when this takes off, I could see there being literally hundreds of thousands of patterns. And at that point it&#8217;s going to be extremely difficult to separate the ones that you would like from the ones which are just there in front of you, but you don&#8217;t necessarily feel able to use. So really I&#8217;m just wondering how that may be curated in the future. Any roadmap plans for that?</p>\n\n\n\n<p>[00:33:00] <strong>Kelly Choyce-Dwan:</strong> Yeah. you&#8217;re right there are, what did you say, 50,000 plugins?</p>\n\n\n\n<p>[00:33:03] <strong>Nathan Wrigley:</strong> Yeah,</p>\n\n\n\n<p>[00:33:04] <strong>Kelly Choyce-Dwan:</strong> Yeah, there&#8217;s 400 patterns.</p>\n\n\n\n<p>[00:33:06] <strong>Nathan Wrigley:</strong> Yeah, yeah.</p>\n\n\n\n<p>[00:33:07] <strong>Kelly Choyce-Dwan:</strong> So a little different. I don&#8217;t know that there&#8217;s any concrete roadmap for what the future of this directory might look like. There are some discussions about whether there should be different categories, like buttons, columns, taxonomy. There&#8217;s questions about how we should handle patterns that are more for site building versus just content patterns. So I do think that this is all very much still like to be decided, and really if anyone has opinions, I&#8217;m sure we&#8217;d love to hear them.</p>\n\n\n\n<p>[00:33:39] <strong>Nathan Wrigley:</strong> Yeah, we&#8217;ll get onto that actually now because that feels like a good point. So obviously this is being built out in the open. The pair of you have obviously taken a great interest in it, but it may be that people listening to this, this is new to them. And they think that they would like to play with this a little bit, become involved with the team.</p>\n\n\n\n<p>So maybe again, I&#8217;ll direct this one at Kelly first off. Are there any ways, better ways where people can get involved in the project of the directory or the creator? Where are the best places to go and hang out?</p>\n\n\n\n<p>[00:34:12] <strong>Kelly Choyce-Dwan:</strong> If you want to have feedback about the future of the pattern directory or if you just want to report that something&#8217;s not working. The project is on GitHub. It&#8217;s at github.com/wordpress/patterndirectory.</p>\n\n\n\n<p>[00:34:27] <strong>Nathan Wrigley:</strong> So that&#8217;s the best place to go if you wish to find out about becoming involved. Ana, just wondering about your experiences of being involved with this. Have you got any, any insights? Is there a thing that you found the most useful? A, I don&#8217;t know, a Slack channel or a website where people are helping each other out. A group of some kind, maybe a community online somewhere where this is all happening?</p>\n\n\n\n<p>[00:34:50] <strong>Ana Segota:</strong> I was in contact per Slack, with Anne McCartney also and, mostly Slack and Twitter, but yeah, mostly Slack or Github, yeah.</p>\n\n\n\n<p>[00:35:01] <strong>Nathan Wrigley:</strong> Now, I know that neither of you will be able to answer this question directly, but the theme repository and the plugin repository, they feel like there&#8217;s no way that they are going away. They&#8217;re going to be here for the long-term. You know, I can imagine decades from now, they&#8217;ll still be in existence. Do you both have confidence that this journey that we&#8217;ve taken on where blocks and patterns are becoming the new, the new way of creating quick and easy websites. Do you feel confident that this is the way it&#8217;s going to be done? You know, that we ought to sail our ship in this direction?</p>\n\n\n\n<p>Your long-term thoughts really on whether or not this is the way it&#8217;s going to be done in the future.</p>\n\n\n\n<p>[00:35:40] <strong>Ana Segota:</strong> I hope so. I really hope so. I think this way is, better way of making, for example, I am in theme business, so, it&#8217;s easier to create themes. Especially to offer easier way of using themes to users. So finally theme can be a design for me, and that&#8217;s a really big step in the right direction. So I really hope it will stay. And also be better with the time and more easier to use.</p>\n\n\n\n<p>[00:36:12] <strong>Nathan Wrigley:</strong> Thank you. And Kelly.</p>\n\n\n\n<p>[00:36:14] <strong>Kelly Choyce-Dwan:</strong> Yeah, I do think that this is the way forward. I think that using blocks and making patterns is really only going to become more, more standard. Easier to use. And so I think that this is going to be the way to make websites</p>\n\n\n\n<p>[00:36:28] <strong>Nathan Wrigley:</strong> Yeah. Just one last quick thought. I mentioned something similar earlier and Ana talked about it, I&#8217;m going to direct this one at you, Kelly, if that&#8217;s all right. I don&#8217;t know what your experience is with other website building tools. And we mentioned page builders, such as Elementor and, I just wondered what your thoughts are on where the user interface is and the user experience is at the moment.</p>\n\n\n\n<p>Maybe you&#8217;ve got some insight into that. Maybe you don&#8217;t, but I just wondered whether you thought that it was yet at a point of maturity. And that kind of ties into the question I&#8217;ve just asked about whether it would be widely adopted, because it feels like there&#8217;s a big holdout of people the moment who simply cannot make the move because the experience as yet doesn&#8217;t have that, it&#8217;s exactly the same on the front end, as it is on the backend. And Ana, I think you just said, Yeah in the background. You can identify. You&#8217;ve committed, you&#8217;ve jumped over and you&#8217;ve made that journey and put the investment of time into&#8230;</p>\n\n\n\n<p>[00:37:24] <strong>Ana Segota:</strong> Yeah, but it takes a lot of challenges, yeah. Because I get the input from the user side and I also used Elementor before to see how it works. And I must say it&#8217;s still a long way. But, what is most confusing now to the users, what I said before, also, those two editors and two different phase. We now have again templates that you can edit.</p>\n\n\n\n<p>And they&#8217;re a bit confused. Like, okay, I go on out to edit the template and I saved it and now it&#8217;s applied to all my pages and now you need to explain it that they need to refresh it and pull it back. And it&#8217;s a bit confusing. So we don&#8217;t have one editor where you can do all the things. For example, you come to one editor and click, for example, to choose a layout and this layout is there and you can edit it and that&#8217;s it. Yeah, it&#8217;s a bit struggle for now.</p>\n\n\n\n<p>[00:38:25] <strong>Nathan Wrigley:</strong> I do wonder if that struggle, and I&#8217;m going to see what Kelly makes on this, I do wonder if that&#8217;s going to be for a little while into the future, if that&#8217;s going to be a limitation in terms of adoption, is the fact that there are difficulties. There&#8217;s a lot of learning which needs to take place to wean you off those tools and, whilst the WordPress Core way of doing blocks and patterns and so on is free, widely available, done in the open, open source and all of that kind of stuff. I wonder if the adoption is going to be stifled because of the constraints that Ana just mentioned. What do you think about that?</p>\n\n\n\n<p>[00:39:04] <strong>Ana Segota:</strong> I think it depends also on us, on themers a lot. How we will implement this and make it easier for the users. And we also need to educate now the users, how they can use it and make it as easier as possible. And sometimes there&#8217;s not that easy because you need to follow updates and to do the updates all the time and to educate people about it.</p>\n\n\n\n<p>But I think it&#8217;s a good step in the right direction. And I think with the time and with the education people will adopted it yeah. Just by creating a pages using just block pattern it&#8217;s a really a big step. And it&#8217;s a great thing. You can really create most everything with block patterns without using templates for example.</p>\n\n\n\n<p>[00:39:54] <strong>Nathan Wrigley:</strong> Yeah, I think people just need time, the inspiration to get into it&#8230;</p>\n\n\n\n<p>[00:39:59] <strong>Ana Segota:</strong> It&#8217;s a new, it&#8217;s a new thing and you always need time to learn something new.</p>\n\n\n\n<p>[00:40:03] <strong>Nathan Wrigley:</strong> That&#8217;s right. We actually interviewed Courtney Robertson from the Learn initiative last week. And there&#8217;s an awful lot of content. And I think that&#8217;s maybe a piece that was missing in the past, the ability to go and find video tutorials, which answer the exact question that you&#8217;re looking for.</p>\n\n\n\n<p>Kelly, can I put that one to you? Is it basically the same question? You said that you hadn&#8217;t got a great deal of experience with page builders and so on, but I&#8217;m just wondering if you had any intuitions around there, whether or not the UI and the UX is, is everything that you guys had hoped it would be, or do you feel that there&#8217;s still quite a lot of work going through WordPress six and seven and maybe even, eight.</p>\n\n\n\n<p>[00:40:39] <strong>Kelly Choyce-Dwan:</strong> Yeah, I haven&#8217;t used page filters. I am definitely a pretty vanilla WordPress user. But I have been, you know, working with the site editor and I can see that it is a little confusing still. I do think that it needs to be iterated on, but I think that the future is going to be good.</p>\n\n\n\n<p>I think the plans are there and it&#8217;s constantly getting better. So I&#8217;m very positive about it. Yeah.</p>\n\n\n\n<p>[00:41:02] <strong>Nathan Wrigley:</strong> Thank you. Okay, just to wrap up, if people have listened to this podcast today and they would like to get in touch with you and make contact and use your expertise. What&#8217;s the best way of getting in touch with you? It could be a Twitter handle could be an email address, or it could be nothing. You might wish to share nothing at all, but I&#8217;ll start with Ana. What&#8217;s the best way to get in touch with you, Ana?</p>\n\n\n\n<p>[00:41:24] <strong>Ana Segota:</strong> Twitter, or Slack or email. It&#8217;s all good. Maybe you can add a later?</p>\n\n\n\n<p>[00:41:31] <strong>Nathan Wrigley:</strong> Yeah, I will definitely add your Twitter and Slack into the show notes. And same question to you, Kelly. What&#8217;s the best way to get in touch with you?</p>\n\n\n\n<p>[00:41:40] <strong>Kelly Choyce-Dwan:</strong> You can find me on Twitter, Ryelle, R Y E L L E or on wordpress.org Slack. I can also chat there.</p>\n\n\n\n<p>[00:41:49] <strong>Nathan Wrigley:</strong> Okay, Ana and Kelly, thank you so much for talking to me on the podcast today, and I appreciate you giving me an hour of your time. Thank you very much, indeed.</p>\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 18 May 2022 14:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"Post Status: WooCommerce 6.5, 6.5.1, and WooCommerce Blocks 7.6\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=97704\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://poststatus.com/woocommerce-6-5-6-5-1-and-woocommerce-blocks-7-6/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3050:\"<p class=\"has-drop-cap\">Well, the week started the release of  <a href=\"https://developer.woocommerce.com/2022/05/10/woocommerce-6-5-released/\"><strong>WooCommerce 6.5</strong></a>  and ended with a  <a href=\"https://developer.woocommerce.com/2022/05/13/woocommerce-6-5-1-fix-release/\"><strong>6.5.1 bug fix</strong></a> release. Between all of that, <strong><a href=\"https://developer.woocommerce.com/2022/05/10/woocommerce-blocks-7-6-0-release-notes/\">WooCommerce Blocks 7.6</a> </strong>was also released.</p>\n\n\n\n<p>Over on <strong>Do the Woo</strong>, we had <a href=\"https://dothewoo.io/the-woocommerce-roundtable-dives-into-wordpress-6-0/\">a conversation about the upcoming release</a> of <strong>WordPress 6.0</strong>. The <strong>Woo Roundtable</strong>, consisting of <strong>Ronald Gijse</strong>l, <strong>Robbie Adair</strong>, <strong>Robert Jacobi</strong>, and <strong>Tammie Lister</strong> dove in to offer some insights about 6.0 and how WooCommerce plays into it. </p>\n\n\n\n<p>Then <strong>Ronnie Burt</strong> from <strong>Sensei LMS</strong> and <strong>Automattic</strong> shared his extensive experience in the wider education space and his journey to move into the WordPress ecosystem, and LMS space:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>&#8220;And so when I think about democratizing education, I think about how do we help [provide] the best content [so the] best learning experiences bubble to the top and be found.&#8221;</p></blockquote>\n\n\n\n<p>A little bird told me about <a href=\"https://poststatus.com/the-state-of-wordpress-market-share/\">a drop in the WordPress market share</a>. Or actually, a Tweet from Joost de Valk. As a result I had to add <a href=\"https://dothewoo.io/woobits-dropping-my-02-about-wordpress-marketshare/\">my small take to the influx of reaction we have seen</a>. It\'s short! </p>\n\n\n\n<p>I think we just need to wait and see what shakes out. It\'s too early to say if this is a new trend.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>&#8220;&#8230;I am not losing any sleep over that number right now. To be fair, depending on your own stakes, you may feel differently. And trust me, there are some interesting insights that Joost shared in the post, as well as others that are either agreeing with or serving a rebuttal. And if you dare go down that rabbit hole, well, good luck.&#8221;</p></blockquote>\n\n\n\n<p>Trust me, I didn’t spend much time on my response for several reasons:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>“I have had touchpoints in the technical space for over 3 decades. If I was someone that could predict what came next for any specific technology, or 100% understood a lot of the ups and downs, well, maybe I wouldn\'t be rich but I would sure have a lot to talk about.”</p></blockquote>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\"><a href=\"https://dothewoo.io/woobits-dropping-my-02-about-wordpress-marketshare/\">WooBits: Dropping My .02% About WordPress Marketshare</a></blockquote>\n</div>\n\n\n\n<h2 id=\"h-\">&nbsp;</h2>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 17 May 2022 21:00:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"WPTavern: How To Start Testing Your WordPress Code With the Pest PHP Testing Framework\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=134402\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"https://wptavern.com/how-to-start-testing-your-wordpress-code-with-the-pest-php-testing-framework\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9024:\"<p>We can all agree that WordPress has come a long way since its beginning and that it grew into something a lot more than blogging software.</p>\n\n\n\n<p>At its core, it’s still a content management system (CMS), but with over 59,000 plugins in the <a href=\"http://wordpress.org/\">wordpress.org</a> directory, you can customize it to be much more.</p>\n\n\n\n<p>The reason for its popularity is its low entry barrier for both content creators and developers. Sometimes this comes with a cost. It’s no secret that WordPress has a bad reputation when it comes to development. It has a lot of legacy baggage and die-hard rules that prevent any backward compatibility breaking change when it comes to PHP code (Gutenberg is another story I won’t get into).</p>\n\n\n\n<p>That legacy PHP code is often used by the developers that are starting to enter the world of programming, and the issue with that is they can learn some bad programming patterns. That in turn means they will reuse the poorly written code, increasing the amount of bad code in the world.</p>\n\n\n\n<p>This is where WordPress gets its bad reputation in the developer community.</p>\n\n\n\n<h3><strong>Breaking the cycle</strong></h3>\n\n\n\n<p>So how can we break this cycle of bad code? By teaching new developers how they should write good code. One example of teaching new developers (but also old ones that are still clinging to the ‘WordPress’ way of doing things) is by writing tutorials.</p>\n\n\n\n<p>Another way is to encourage them to use tools that can help them write better code.</p>\n\n\n\n<p>I’m currently involved in the work which aims to release the new version of the <a href=\"https://github.com/WordPress/WordPress-Coding-Standards/\">WordPress Coding Standards</a>, a set of rules used for the <a href=\"https://github.com/squizlabs/PHP_CodeSniffer/\">PHP_CodeSniffer</a> tool that will let you know if your code has some potential issues (security, best practices, code style).</p>\n\n\n\n<p>Another tool that I’ve recently developed is a <a href=\"https://github.com/dingo-d/wp-pest-integration-test-setup\">package</a> that will help developers set up WordPress integration tests that use the <a href=\"https://pestphp.com\">Pest</a> testing framework.</p>\n\n\n\n<h3><strong>Ok, so why do we need this new tool?</strong></h3>\n\n\n\n<p>The main motivation behind creating this package is to encourage more people to write tests for their code, especially plugin developers.</p>\n\n\n\n<p>A lot of developers in the WordPress community go with the mantra: I can see that it works because I’ve tried it out in my browser. That’s OK, but there are issues with that.</p>\n\n\n\n<p>First, it’s time-consuming. Every time you make some change, you need to make sure it works, but also that you didn’t break anything.</p>\n\n\n\n<p>Second, people make mistakes. We are not foolproof, and code may be misused in ways you never thought possible. You would be amazed at how creative people can be when writing code.</p>\n\n\n\n<p>Automated tests are quick and can help you in testing various cases that will happen when you execute your code.</p>\n\n\n\n<p>You test for the intended behavior (happy path), and in a quick way, you can add examples of how your code can be used in a way you didn’t intend it to be used (unhappy path).</p>\n\n\n\n<p>It also safeguards your code from regressions. A code regression is when you unintentionally break one part of your code by adding new code.</p>\n\n\n\n<h3><strong>The problem with tests set up so far</strong></h3>\n\n\n\n<p>Testing in WordPress is not a new thing. And it’s not like you couldn’t set up tests for your code before. There are amazing libraries out there that will help you set everything up like <a href=\"https://wpbrowser.wptestkit.dev/\">wp-browser</a>.</p>\n\n\n\n<p>But the problem is that the setup procedure is often clunky.</p>\n\n\n\n<p>You need to set up a separate database for tests, and you need to run certain scripts, then change files to make it all work.</p>\n\n\n\n<p>Let’s face it, it’s not a straightforward thing to do, and developers are by nature lazy creatures (that’s why we write code to do things for us <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f604.png\" alt=\"?\" class=\"wp-smiley\" />).</p>\n\n\n\n<p>The aim of the wp-pest integration test setup is to eliminate all that extra work.</p>\n\n\n\n<h3><strong>How to set it up</strong></h3>\n\n\n\n<p>In order to set it up, your project must use <a href=\"https://getcomposer.org/\">Composer</a>. It’s a de-facto standard way of adding packages to your code.</p>\n\n\n\n<p>In your terminal type</p>\n\n\n\n<pre class=\"wp-block-code\"><code>composer require dingo-d/wp-pest-integration-test-setup --dev</code></pre>\n\n\n\n<p>After you’ve downloaded the package and its dependencies you can set up the theme tests by typing</p>\n\n\n\n<pre class=\"wp-block-code\"><code>vendor/bin/wp-pest setup theme</code></pre>\n\n\n\n<p>Or, in the case you want to set up tests for your plugin, you can write</p>\n\n\n\n<pre class=\"wp-block-code\"><code>vendor/bin/wp-pest setup plugin --plugin-slug=your-plugin-slug</code></pre>\n\n\n\n<p>Optionally, you can provide a <code>--wp-version</code> parameter, to specify which WordPress version you&#8217;d like to test your code on.</p>\n\n\n\n<p>In the background, a WordPress instance will be downloaded, and an in-memory database will be set up, along with two examples of tests that you can run.</p>\n\n\n\n<p>Then, running either</p>\n\n\n\n<pre class=\"wp-block-code\"><code>vendor/bin/pest --group=unit</code></pre>\n\n\n\n<p>or</p>\n\n\n\n<pre class=\"wp-block-code\"><code>vendor/bin/pest --group=integration</code></pre>\n\n\n\n<p>will run the tests.</p>\n\n\n\n<p>The beauty of Pest is that its syntax is developer-friendly. It has <a href=\"https://pestphp.com/docs/installation\">amazing documentation</a> and great syntax. Let’s look at a simple example. Say you are registering a custom post type called &#8216;Books&#8217;:</p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;?php\n\n/**\n * Plugin Name: Test plugin\n * Desctiption: Test plugin\n * Version: 1.0.0\n * License: MIT\n */\n\nfunction test_plugin_register_books_cpt() {\n    $args = array(\n        \'label\'              =&gt; esc_html__( \'Books\', \'test-plugin\' ),\n        \'public\'             =&gt; true,\n        \'publicly_queryable\' =&gt; true,\n        \'show_ui\'            =&gt; true,\n        \'show_in_menu\'       =&gt; true,\n        \'query_var\'          =&gt; true,\n        \'rewrite\'            =&gt; array( \'slug\' =&gt; \'book\' ),\n        \'capability_type\'    =&gt; \'post\',\n        \'has_archive\'        =&gt; true,\n        \'hierarchical\'       =&gt; false,\n        \'menu_position\'      =&gt; null,\n        \'supports\'           =&gt; array( \'title\', \'editor\', \'author\', \'thumbnail\', \'excerpt\', \'comments\' ),\n    );\n \n    register_post_type( \'book\', $args );\n}\n \nadd_action( \'init\', \'test_plugin_register_books_cpt\' );\n</code></pre>\n\n\n\n<p>After running the setup command that adds an example, a test called <code>BooksCptTest.php</code> would look like this:</p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;?php\n\nnamespace Tests\\Integration;\n\nbeforeEach(function () {\n	parent::setUp();\n});\n\nafterEach(function () {\n	parent::tearDown();\n});\n\ntest(\'Books custom post type is registered\', function () {\n	// We can use assertions from PHP_Unit.\n	$this-&gt;assertNotFalse(has_action(\'init\', \'test_plugin_register_books_cpt\'));\n\n	$registeredPostTypes = \\get_post_types();\n\n	// Or we can use expectations API from Pest.\n	expect($registeredPostTypes)\n		-&gt;toBeArray()\n		-&gt;toHaveKey(\'book\');\n});\n</code></pre>\n\n\n\n<p>Running <code>vendor/bin/pest --group=integration</code> gives us the following output:</p>\n\n\n\n<pre class=\"wp-block-code\"><code>Installing...\nRunning as single site... To run multisite, use -c tests/phpunit/multisite.xml\nNot running ajax tests. To execute these, use --group ajax.\nNot running ms-files tests. To execute these, use --group ms-files.\nNot running external-http tests. To execute these, use --group external-http.\n\n   PASS  Tests\\\\Integration\\\\BooksCptTest\n  ✓ Books custom post type is registered\n\n  Tests:  1 passed\n  Time:   0.14s</code></pre>\n\n\n\n<h3><strong>Conclusion</strong></h3>\n\n\n\n<p>And just like that, you have the ability to run WordPress integration tests in your theme or plugin. Tests are amazing because not only are they safeguarding us from mistakes, but they also force us to write clean and testable code. This is especially true for plugins that have complicated logic or are communicating with third-party APIs.</p>\n\n\n\n<p>Writing tests for such a codebase will force you to think about what your code architecture looks like so you can easily write automated tests &#8211; not to mention the time and money you’ll save from not having to manually test everything.</p>\n\n\n\n<p>If you think this is something you might benefit from, feel free to use it, and <a href=\"https://github.com/dingo-d/wp-pest-integration-test-setup\">star the repository</a> on GitHub.</p>\n\n\n\n<p>Hopefully, this will encourage more WordPress developers to use tools that will enhance their coding skills.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 17 May 2022 18:25:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Denis Žoljom\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"WPTavern: Online Meetup: WordPress NYC to Host Series on Modern, Privacy-Respecting Analytics and Leveraging First-Party Data\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=134464\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"https://wptavern.com/online-meetup-wordpress-nyc-to-host-series-on-modern-privacy-respecting-analytics-and-leveraging-first-party-data\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3125:\"<p>One of the positive effects of the COVID-19 pandemic is local meetups are more frequently broadcasting their events online, giving people outside the immediate area the opportunity to attend and learn new skills. <a href=\"https://www.meetup.com/find/?keywords=wordpress&source=EVENTS&eventType=online&sortField=DATETIME\">Searching meetup.com for WordPress</a>, filtered to show Online Events, will show upcoming events that anyone can attend.</p>\n\n\n\n<p>WordPress NYC is hosting an interesting new six-part series on analytics beginning this week on Thursday, May 19, at 7PM EDT. Co-organizer Victor Ramirez will kick it off with a workshop titled &#8220;The Product &amp; Marketing Data Landscape.&#8221; Attendees will get an overview of  the current WordPress analytics landscape. Subsequent events will cover how to make a tracking plan, how to migrate to open source tracking options (while respecting privacy), and  how to leverage WordPress data to improve user experiences.</p>\n\n\n\n<p>Ramirez is the lead product analytics engineer at <a href=\"https://www.theknotww.com/\">The Knot Worldwide</a> and also runs a WordPress agency on the side. </p>\n\n\n\n<p>&#8220;I was inspired because product analytics has been my job for two years,&#8221; Ramirez said. &#8220;It&#8217;s one of the hottest roles in technology everywhere except WordPress.&#8221; </p>\n\n\n\n<p>During the workshop he plans to demonstrate the benefits of using <a href=\"https://www.rudderstack.com/\">Rudderstack</a>, an open source customer data pipeline tool, and <a href=\"https://www.avo.app/\">Avo workbench</a>, a data governance platform, comparing those to private enterprise options. The schedule for the series includes weekly presentations through June 23:</p>\n\n\n\n<ul><li>May 19: <a href=\"https://www.meetup.com/WordPressNYC/events/285813151/\">The Product &amp; Marketing Data Landscape</a></li><li>May 26: <a href=\"https://www.meetup.com/WordPressNYC/events/285813159/\">Tracking Plans as the Lynchpin for Success</a></li><li>June 2: <a href=\"https://www.meetup.com/WordPressNYC/events/285813166/\">Goodbye Google, Hello 1st Party Data</a></li><li>June 9: <a href=\"https://www.meetup.com/WordPressNYC/events/285813170/\">Privacy, Performance, 3rd Party Integrations</a></li><li>June 16: <a href=\"https://www.meetup.com/WordPressNYC/events/285813176/\">Build Dashboards &amp; Reporting in Minutes not Weeks</a></li><li>June 23: <a href=\"https://www.meetup.com/WordPressNYC/events/285813178/\">Leveraging Data for Enhanced User Experiences</a></li></ul>\n\n\n\n<p>The series will introduce attendees to the concept of collecting first-party data (as opposed to third-party data) and learn how to create better, privacy-respecting experiences for consumers, instead of &#8220;targeting&#8221; them with unwanted messages.</p>\n\n\n\n<p> If you&#8217;re using WordPress for a product or service, this workshop may give you a new way to think about consumer data collection for your business. The event is free and the link to attend online will be visible for those who <a href=\"https://www.meetup.com/WordPressNYC/events/285813151/\">sign up to attend</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 17 May 2022 17:34:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"WordPress.org blog: WordPress 6.0 Release Candidate 3 (RC3) Now Available for Testing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=12866\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"https://wordpress.org/news/2022/05/wordpress-6-0-release-candidate-3-rc3-now-available-for-testing/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4194:\"<p>WordPress 6.0 is scheduled for release next week on May 24, 2022! This RC3 release is the final opportunity for you to test and help contribute to making the 6.0 release great.</p>\n\n\n\n<p>You can view changes since the RC2 release via <a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.0\">Gutenberg</a> and <a href=\"https://core.trac.wordpress.org/query?status=accepted&status=closed&changetime=05%2F10%2F2022..05%2F17%2F2022&resolution=fixed&milestone=6.0&col=id&col=summary&col=status&col=milestone&col=owner&col=type&col=priority&order=id\">Trac</a>.</p>\n\n\n\n<h1>Installing RC3</h1>\n\n\n\n<p><strong>This version of the WordPress software is under development</strong>. Please do not install, run, and test this version of WordPress on production or mission-critical websites. Instead, it is recommended that you install RC3 on a test server and site.&nbsp;</p>\n\n\n\n<p>You can test WordPress 6.0 RC3 in three ways:</p>\n\n\n\n<p><strong>Option 1: </strong>Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the “Bleeding edge” channel and “Beta/RC Only” stream).</p>\n\n\n\n<p><strong>Option 2: </strong>Direct download the <a href=\"https://wordpress.org/wordpress-6.0-RC3.zip\">release candidate (zip)</a>.</p>\n\n\n\n<p><strong>Option 3:</strong> When using WP-CLI to upgrade from Beta 1, 2, 3, 4, RC1, or RC2 on a case-insensitive filesystem, please use the following command:</p>\n\n\n\n<p><code>wp core update --version=6.0-RC3</code></p>\n\n\n\n<h1>Plugin and Theme Developers</h1>\n\n\n\n<p>All plugin and theme developers are encouraged to complete testing of their respective extensions against WordPress 6.0 RC3 and update the “<em>Tested up to”</em> version in their readme file to 6.0 this week. If you find compatibility problems, please be sure to post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>, so these items can be investigated further prior to the final release date of May 24.</p>\n\n\n\n<p>Review the <a href=\"https://make.wordpress.org/core/2022/05/03/wordpress-6-0-field-guide/\"><em>WordPress 6.0 Field Guide</em></a>, for more details on this release.</p>\n\n\n\n<p>Review additional information on the full <a href=\"https://make.wordpress.org/core/6-0/\">6.0 release cycle</a>.</p>\n\n\n\n<p>Check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/dev-notes+6-0/\">6.0-related developer notes</a> in the coming weeks which will detail upcoming changes.</p>\n\n\n\n<h1>Translate WordPress</h1>\n\n\n\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help translate WordPress into more than 100 languages.</a></p>\n\n\n\n<h1>How to Help Test WordPress</h1>\n\n\n\n<p>Testing for issues is critical for stabilizing a release throughout its development. Testing is also a great way to contribute to WordPress. If you are new to testing, check out this <a href=\"https://make.wordpress.org/test/2022/04/12/help-wanted-test-wordpress-6-0/\">detailed guide</a> that will walk you through how to get started.</p>\n\n\n\n<p>If you think you have run into an issue, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. If you are comfortable writing a reproducible bug report, you can <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>. This is also where you can find a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2>RC3, An (Almost) Final Haiku</h2>\n\n\n\n<p>It’s near time for six<br />The reward is the journey<br />Just one week to go</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p>Thank you to the following contributors for collaborating on this post: <a href=\"https://profiles.wordpress.org/dansoschin/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>dansoschin</a>, <a href=\"https://profiles.wordpress.org/webcommsat/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>webcommsat</a>.&nbsp;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 17 May 2022 16:39:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Dan Soschin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"Do The Woo Community: WordCamp Europe 2022 with Takis Bouryouris and Taeke Reijenga\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=71671\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://dothewoo.io/episode-223/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:388:\"<p>Takis Bouryouris and Taeke Reijenga, part of the organizing team for WordCamp Europe, joins us in a conversation all about WCEU.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://dothewoo.io/episode-223/\">WordCamp Europe 2022 with Takis Bouryouris and Taeke Reijenga</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 17 May 2022 09:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"WPTavern: How The Welch News Uses WordPress To Keep Local News Alive in West Virginia\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=134197\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://wptavern.com/how-the-welch-news-uses-wordpress-to-keep-local-news-alive-in-west-virginia\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:13172:\"<img />The Welch News Team &#8211; photo credit: The Welch News\n\n\n\n<p>For 95 years, the people living in the McDowell County coalfields have depended on <a href=\"https://www.welchnews.com/\">The Welch News</a> for local coverage of important events. The county sits at the southernmost point of state, with a declining population of <a href=\"https://www.census.gov/quickfacts/mcdowellcountywestvirginia\">18,363</a> and a median household income of $27,682. </p>\n\n\n\n<p>In the 1950&#8217;s, at the apex of the mining industry&#8217;s economic influence, McDowell County had close to 100,000 people living there. They mined the coal that built much of the infrastructure for American cities. After the industry became more mechanized and many left to find work elsewhere, the community began to deteriorate, drugs got a foothold, and many local kids are now raised by their grandparents. Property taxes evaporated, as a large number of homes are on homestead exemption, which further lowers property taxes for those who are 65+ or considered disabled.</p>\n\n\n\n<p>The Welch News remains in the county as a unifying force that the dwindling populace relies on to stay connected and informed. Publisher Melissa Nester often says she learned how to read by reading the Welch News. Three years ago, she purchased her local newspaper to keep it from shuttering. </p>\n\n\n\n<p>&#8220;Our previous owner made the decision to close the newspaper at a point we felt we were going strong,&#8221; Nester said. &#8220;Revenue had declined along with the business population we used to support our operation over the years, however we felt it was an asset to community building and wanted to use it as such.&#8221; &nbsp;</p>\n\n\n\n<img />The Welch News Publisher Melissa Nestor &#8211; photo credit: The Welch News\n\n\n\n<p>Nester purchased the paper, with the promised support of her core team members at the time. Most of them are still working with her today.</p>\n\n\n\n<p>“The Welch News had been a staple in all our lives,&#8221; Nester said. &#8220;When we announced that we would cease to print, the community was outraged. We cried with customers stopping in to see us one last time, most of them sharing stories of their first job being a paper carrier at the newspaper. One of our carriers at the time told us the story of an elderly woman who said all she had at home was a landline phone and The Welch News. It’s all she had. We were absolutely floored as we heard how much our community wanted us to remain.&#8221;</p>\n\n\n\n<h3>The Welch News Launches a Digital Publication on WordPress with the Help of the PaywallProject</h3>\n\n\n\n<img />photo credit &#8211; The PaywallProject\n\n\n\n<p>After purchasing the paper, Nester held a meeting on May 8, 2018, where she invited everyone she could think of to help her plan a path to move forward. Tyler Channell, creator of the <a href=\"https://www.paywallproject.com/\">PaywallProject</a>, attended this meeting and listened to the team&#8217;s goals and concerns.</p>\n\n\n\n<p>&#8220;Building simple WordPress-based sites for various businesses is something I&#8217;ve done dating back to 2008,&#8221; Channell said. &#8220;I really started focusing on local newspaper web development in late 2017 after graduate school (journalism) at West Virginia University.&#8221;</p>\n\n\n\n<p>Channell began helping local West Virginian newspapers, after they reached out with specific questions about generating revenue from their publications.</p>\n\n\n\n<p>&#8220;Digital ads weren&#8217;t cutting it for them (a similar story I hear from publishers across the country),&#8221; Channell said. &#8220;With Facebook and Google owning virtually the entire digital ad market, newspapers must focus their efforts on generating paid digital subscriptions to remain sustainable. People are willing to pay for local content that they can&#8217;t get anywhere else.&#8221;</p>\n\n\n\n<p>After helping his first local newspaper find success with a paywall he implemented, he decided to put together a simple ready-to-go website solution focused on growing paid digital subscribers for local newspapers across West Virginia and beyond. He now has approximately 20 local newspapers signed on to the PaywallProject&#8217;s services. The all-in-one subscription platform for local news costs $199/month and includes website development, a flexible paywall subscription platform with no transaction fees, migration, and built-in ad management.</p>\n\n\n\n<p>&#8220;I use a number of different themes/plugin-based solutions combined with custom code, payments via Stripe, and hosting through DigitalOcean to bring it all together,&#8221; Channell said. &#8220;The goal for me is to provide all technical aspects so that local news publishers can focus on publishing content.&#8221;</p>\n\n\n\n<p>For many small publishers, this is their very first website. Channell said his clients are quick to acclimate to WordPress.</p>\n\n\n\n<p>&#8220;I think when you remove the technical aspects of digital subscriptions, it reduces the learning curve dramatically,&#8221; he said.</p>\n\n\n\n<p>&#8220;Growing digital subscriptions takes a lot of time and effort. But with each new paid subscriber a newspaper brings on board, local journalism becomes that much more sustainable.&#8221;</p>\n\n\n\n<p>The Welch News&#8217; WordPress site helped put the publication on a path to sustainability. Within the first ten days of launching their digital edition, they gained 100 new subscribers, and subscriptions keep rolling in from local residents and people all over the country.</p>\n\n\n\n<p>“I believe [Channell] was particularly interested when he learned our newsroom was staffed by millennials who cared deeply about the community they live in and hoped to make a positive change,&#8221; Nester said. &#8220;He realized our staff could easily transition.</p>\n\n\n\n<p>&#8220;As publisher/owner, at 56 years old, I have probably been the person hardest to train on using the site, but even I am very comfortable posting articles without help.&#8221;</p>\n\n\n\n<p>Welch News Editor Derek Tyson is the primary person writing and editing articles, approving submissions, and managing ad design and layout for the front page.</p>\n\n\n\n<p>“We really enjoy the ease of access WordPress offers,&#8221; Tyson said. &#8220;I think we all were quite surprised how easy it was to put our articles into the digital format to share with the world at large. The transition wasn’t hard. Changing our office routine after over 90 years of only print publishing was by far the hardest part.  PaywallProject made this transition easy for us.  Trainings happened in our own newsroom, and PaywallProject has always available to help with any issues.”</p>\n\n\n\n<img />The Welch News Editor Derek Tyson &#8211; photo credit: The Welch News\n\n\n\n<p>The entire publication process is still very much a labor of love, as is evident in this video the PaywallProject created featuring The Welch News. The team managing it is far younger than most of the town but fiercely dedicated to keeping this vital community resource going.</p>\n\n\n\n<div>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Growing paid digital subscriptions in rural Appalachia is possible! <a href=\"https://twitter.com/nestergirl2?ref_src=twsrc%5Etfw\">@nestergirl2</a> <a href=\"https://twitter.com/thatdamntyson?ref_src=twsrc%5Etfw\">@thatdamntyson</a> <a href=\"https://t.co/rpOE8fUEqM\">pic.twitter.com/rpOE8fUEqM</a></p>&mdash; PaywallProject (@paywallproject) <a href=\"https://twitter.com/paywallproject/status/1523755491683631104?ref_src=twsrc%5Etfw\">May 9, 2022</a></blockquote>\n</div>\n\n\n\n<p>“Putting ourselves out into the digital world was both exciting and terrifying,&#8221; Nester said. &#8220;We were skeptical about our content being capable of generating online subscriptions. But it was the best case of being proven wrong in our lives.</p>\n\n\n\n<p>“It does sometimes feel unnerving to move from a local publication that is only read via print media in your community, to a publication with a far greater reach.  Sometimes that brings forth &#8216;internet warriors&#8217; to criticize, as well as &#8216;internet warriors&#8217; to support.  PaywallProject is knowledgeable in the field of journalism, and that makes a great difference.&#8221;</p>\n\n\n\n<h3>The Welch News Still Prints and Delivers the Paper Three Days Per Week</h3>\n\n\n\n<p>The Welch News is just one of hundreds of publications that have <a href=\"https://wptavern.com/finding-wordpress-in-the-post-print-news-era\">found WordPress in the post-print news era</a>, but unlike many others who transitioned to purely digital publishing, they are committed to keeping their print version going on their 1966 model printing press. They print three days a week and offer home delivery within McDowell County, as well as mail delivery across the nation.</p>\n\n\n\n\n<img />\n\n\n\n<img />\n\n\n\n<img />\n\n\n\n\n<p>&#8220;We have a high population of elderly residents, and strongly feel that they need the connection with the home delivery drivers three times each week,&#8221; Nester said. &#8220;We understand this isn’t the greatest business model, and often hear the advice to move to a weekly publication. Our desire to serve our residents in the best way possible keeps us headstrong about a three-day print publication.&#8221;</p>\n\n\n\n<p>Though nearly everyone from his generation has moved away from the area, Tyson&#8217;s commitment to serve The Welch News&#8217; elderly subscribers burns strong.</p>\n\n\n\n<p>&#8220;We&#8217;re here to serve a very vulnerable population that I feel like the modern world is pretty quick to sweep under the rug,&#8221; Tyson said in a recent <a href=\"https://vimeo.com/495924832/492e92a96f\">documentary</a> about the county. &#8220;I see elderly people suffer, feeling like they&#8217;re not important and nobody needs them anymore. That&#8217;s just awful. They&#8217;re not as strong, they move a little slow, they&#8217;ll talk your head off but they&#8217;re living human beings that matter, and I&#8217;m going to fight for them.&#8221;</p>\n\n\n\n<p>Local news stands as a guardian for small, economically vulnerable counties like McDowell. In an area that is frequently cited among the five poorest counties in the US, the people still have their own voice through The Welch News. This publication finding sustainability is like a flower growing up through the concrete.</p>\n\n\n\n<p>As we witness the slow death of the American newspaper, these little newspapers staying alive to keep the public informed offer a ray of hope. Small publications continue to contend with <a href=\"https://wptavern.com/more-than-200-local-newspaper-publishers-are-suing-google-and-facebook-for-damages\">the greed and corruption of the advertising industry</a>, tech giants that have <a href=\"https://wptavern.com/amp-has-irreparably-damaged-publishers-trust-in-google-led-initiatives\">willfully eroded publishers&#8217; trust </a>through collusion and manipulation of the digital ad market. With affordable publishing tools like WordPress, The Welch News and its contemporaries can have a fighting chance.</p>\n\n\n\n<p>&#8220;This is very much a heart project to serve and better our community, and we aren&#8217;t sure how long we can sustain it,&#8221; Nester said. &#8220;I&#8217;m certain we wouldn&#8217;t have survived the income loss from COVID without our website. </p>\n\n\n\n<p>&#8220;I often say I quit my job every morning, but go anyway. I quit again by nightfall, and the email comes showing the income from online subscriptions and I decide to try again.&#8221; </p>\n\n\n\n<p>Tyson and his small team of journalists believe the best hope for keeping local news alive, when many small outlets have shuttered or consolidated, is maintaing a hyperlocal focus.</p>\n\n\n\n<p>“Our strategy has been to shift our content priorities from broad coverage to a hyperlocal focus on issues within McDowell County’s borders,&#8221; he said. &#8220;With so many forms of media coverage available today, we decided to focus on what you couldn’t find anywhere else and in turn, showing that important things happen in small towns that deserve media attention.&#8221;</p>\n\n\n\n<p>WordPress and the PaywallProject helped introduce a new stream of revenue for their century-old business. As the subscriptions continued to flow in, Nester said they realized &#8220;hyperlocal content did indeed have true value and would not be found anywhere else.&#8221; It&#8217;s one of the reasons <a href=\"https://www.poynter.org/business-work/2022/the-pulitzers-still-value-opinion-writing-and-so-do-readers/\">many of the 2022 Pulizter prize winners have won for local stories</a> that would never be covered in the larger news market.</p>\n\n\n\n<p>“Citizens near and far should understand the need to fund local newsrooms, and the important work they do,&#8221; Nester said. &#8220;Understanding that without supporting local journalists, a large sense of community will be lost with each news desert that comes.  If newsrooms are funded through community support, it is a better representation of that community and a means to bring forward local issues for resolution.&#8221;</p>\n\n\n\n<p></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 16 May 2022 15:16:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:147:\"WordPress.org blog: WP Briefing: Episode 31: Open Source &amp; Accessibility– Celebrating Global Accessibility Awareness Day With Guest Joe Devon\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=12855\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:140:\"https://wordpress.org/news/2022/05/episode-31-open-source-accessibility-celebrating-global-accessibility-awareness-day-with-guest-joe-devon/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:33186:\"<p>In the thirty-first episode of the WordPress Briefing, GAAD Co-Founder Joe Devon joins WordPress Executive Director Josepha Haden Chomphosy to discuss Global Accessibility Awareness Day and the role of open source in accessibility. </p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em><br /></p>\n\n\n\n<h2 id=\"credits\">Credits</h2>\n\n\n\n<ul><li>Guest: Joe Devon</li><li>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a></li><li>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a></li><li>Production:&nbsp;<a href=\"https://profiles.wordpress.org/santanainniss/\">Santana Inniss</a> and <a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a></li><li>Song: Fearless First by Kevin MacLeod</li></ul>\n\n\n\n<h2>References</h2>\n\n\n\n<ul><li><a href=\"https://accessibility.day/about/\">About GAAD</a></li><li><a href=\"https://gaad.foundation/gaadpledge/\">GAAD Foundation Pledge</a></li><li><a href=\"https://www.who.int/health-topics/disability#tab=tab_1\">World Health Organization on Disability  </a></li><li><a href=\"https://en.wikipedia.org/wiki/The_dress\">The Dress Phenomenon</a></li><li>The Guardian on <a href=\"https://www.youtube.com/watch?v=7X_WvGAhMlQ\">Yanny or Laurel  </a></li><li><a href=\"https://josepha.blog/2019/05/24/empathy-vs-altruism-in-modern-leadership/\">Empathy vs. Altruism in Modern Leadership</a>, Josepha Haden Chomphosy </li><li><a href=\"https://webaim.org/projects/million/\">The WebAim Million 2022 Report</a></li><li><a href=\"https://make.wordpress.org/core/6-0/\">WordPress 6.0 Development Cycle </a></li><li><a href=\"https://europe.wordcamp.org/2022/\">WordCamp Europe 2022</a></li></ul>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-12855\"></span>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy </strong>00:00:00]&nbsp;</p>\n\n\n\n<p>Hello everyone. And welcome to the WordPress Briefing. The podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I&#8217;m your host Josepha Haden Chomphosy. Here we go!</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy </strong>00:00:40]&nbsp;</p>\n\n\n\n<p>Y&#8217;all, we&#8217;ve got an absolutely jam-packed couple of weeks in WordPress. We&#8217;ve got events happening and releases shipping and contributor days being coordinated (I almost said contributor days being contributed). That&#8217;s also what they&#8217;re doing. I&#8217;ll share some of those highlights in today&#8217;s small list of big things, but I did want to specifically call out something that&#8217;s coming up this week on Thursday (May 19, 2022), and that something is Global Accessibility Awareness Day.</p>\n\n\n\n<p>The team of contributors over on the Accessibility team has participated in the Global Accessibility Awareness Day in the past. So I thought it would be interesting to hear from one of the co-founders of this particular day of awareness.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy </strong>00:01:27]&nbsp;</p>\n\n\n\n<p>All right. And with that, Joe Devin, would you like to tell us a little bit more about yourself?&nbsp;</p>\n\n\n\n<p><strong>[Joe Devon 00:01:34] </strong></p>\n\n\n\n<p>Sure. So I am the co-founder of Global Accessibility Awareness Day, which is a day that goes viral every year on the third Thursday of May. We typically have the Twitter reach on the GAAD hashtag on Twitter of 200 million users, which is, I think, pretty much their active user count. We stopped counting once we hit their daily active user count. </p>\n\n\n\n<p>And then, I am Chair of the GAAD Foundation, which we launched last year. And then I have a day job too, where I&#8217;m CEO and co-founder of Diamond, which is an inclusive digital agency that builds software accessibly by default. </p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy </strong>00:02:15]&nbsp;</p>\n\n\n\n<p>Wonderful. Well, we are so excited to have you today. I said we like it&#8217;s me and the mouse in my pocket—we in the WordPress community that&#8217;s going to listen to this. Super excited to have you today. So you mentioned GAAD, Global Accessibility Awareness Day. Last year was your 10th anniversary, which is very exciting, but like with so many good things, I hear it all started with a blog post and a blog post on WordPress, no less.</p>\n\n\n\n<p>So I&#8217;d love to hear about how GAAD evolved from that, with, as I understand it, your co-founder of Jennison (Asuncion). That must be where you met him, I assume.</p>\n\n\n\n<p><strong>[Joe Devon 00:02:51] </strong></p>\n\n\n\n<p>Yes. Yes. So what happened was I started a WordPress blog called <em>My SQL Talk</em>. So it&#8217;s a database blog, and I just thought it was a brilliant name. I mean, My SQL Talk, like that, should be super popular.</p>\n\n\n\n<p>And it probably had maybe ten people who ever looked. Um, and then my dad was getting older, and my dad was a survivor of the concentration camps, and he was a genius. He spoke ten languages. It, he was one of those people. That, when he walked into a room, he just commanded respect. You knew that there was history. I don&#8217;t know how to explain it really, but it was special when my dad walked into the room. And considering all of this that he suffered in his life, watching him get older and struggle, particularly with his banking, was very painful to see. And the bank wasn&#8217;t accessible, so I wrote this blog post proposing that we create a Global Accessibility Awareness Day.</p>\n\n\n\n<p>Sometimes I get these visions, and they never turn into anything. But while I think about it, I&#8217;m like, &#8220;all right, let&#8217;s write this blog post and this can definitely work. Right?&#8221; And then you finish the blog post to hit send, and you&#8217;re like, &#8220;this is not going to work.&#8221;</p>\n\n\n\n<p>But I wasn&#8217;t even smart enough to do social media on it. But fortunately, WordPress had an auto-tweet feature, and it tweeted it out, and Jennison Asuncion, my co-founder, happened to be around and not out that Saturday night. And he read the blog post, and he said, &#8220;this is a great idea. Let&#8217;s make it happen.&#8221;</p>\n\n\n\n<p>And we had two busy people, but we both had a community. He had the accessibility community, and I was building a tech scene in Los Angeles. And what I discovered is if you combine a great idea with the community, great things can happen. </p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:04:49]</strong></p>\n\n\n\n<p>Oh man, you&#8217;re speaking my language over here, helping people find their communities, knowing that community is the thing that is the lifeblood of society.</p>\n\n\n\n<p>That sounded like a tautology. It is not a tautology. You can have a society with an attempt to not have any sort of community around it, but I bet it doesn&#8217;t work very well. Well, that&#8217;s, that&#8217;s very interesting. And so you all just kind of talked through what that would look like, I assume in confidence, or that would have to take place, right? Or was it on Twitter in those days?&nbsp;</p>\n\n\n\n<p><strong>[Joe Devon 00:05:24]</strong> </p>\n\n\n\n<p>Oh, you could still look in the comments and see the back and forth of Jennison and a bunch of other people that got pretty involved with GAAD that are some legendary folks in there. It&#8217;s kind of mind-blowing because I dunno how, how you feel, but for me, when I used to code, uh, three months later, I&#8217;d look back at old code and be like, &#8220;oh, I suck,&#8221; you know, or write an email even and you look back on it a day later and are like &#8220;what a stupid email, how stupid am I?&#8221; You know?  But I look back on that one after ten years; I was scared to look at it because I&#8217;m like, it must&#8217;ve been really bad. But you know, it kind of held up, and exactly what I wrote in there happened &#8211; to my utter shock.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:06:06]</strong></p>\n\n\n\n<p>But also, it&#8217;s kinda nice, though, to look back and be like, &#8220;oh, I used to be much dumber.&#8221;</p>\n\n\n\n<p>Cause then you&#8217;re like, look how far I&#8217;ve come. I&#8217;m no longer that dumb. I&#8217;m a different kind of dumb now; good for me. I always hope to be a different kind of dumb as I go forward. </p>\n\n\n\n<p>So then, okay, so that was your ten-year anniversary last year. GAAD, in general, now has been going on for 11 years, and at the time of this recording, in a couple of weeks, but then probably a week when it finally publishes, you have your next, your next round of that going.</p>\n\n\n\n<p>I think it seems safe to assume that awareness of the need for accessibility has increased during that time, but we all know that the work of accessibility is ongoing. And so, I&#8217;m just curious to hear from your perspective if the awareness of the need for accessibility has generally started to permeate developer communities.</p>\n\n\n\n<p>And are you seeing more developer awareness around the need for accessibility in tech in general?&nbsp;</p>\n\n\n\n<p><strong>[Joe Devon 00:07:12]</strong> </p>\n\n\n\n<p>Yeah. You know, it&#8217;s not enough. It&#8217;s certainly improved a lot.  I keynoted a conference probably four years after GAAD started, maybe five, and I kind of assumed nobody would have heard of accessibility, and I was taken aback when I asked who had heard of it, and a good chunk of the room had. So even then, there had been a difference, and I&#8217;d say now I see accessibility mentioned a lot more in conferences and stuff. But when it comes to actually building it, there&#8217;s a tremendous amount of ignorance. There, there still needs to be a lot more awareness.</p>\n\n\n\n<p>And I think partially people are a little bit scared to dip their toe because they&#8217;re scared that they&#8217;re going to be told that &#8220;no, it&#8217;s not accessible,&#8221; or that they&#8217;re going to say the wrong word or offend somebody. So I&#8217;d say that there&#8217;s some degree of trepidation, but also developers, and it&#8217;s not just developers, designers, and product people. There&#8217;s so much to learn, and it&#8217;s like, &#8220;oh God, there&#8217;s another piece that I have to learn.&#8221; </p>\n\n\n\n<p>And I&#8217;m so glad that you invited me on this podcast because it&#8217;s the developers that, you know, I am a developer, not anymore, I haven&#8217;t touched code in years, but that&#8217;s where I came from. Right? This is my peach, right? Particularly WordPress folks, because I had done a fair bit of WordPress before I moved on to some other things. And, I think we have to talk about usability and understand that accessibility is so much more than how we look at disability.</p>\n\n\n\n<p>And if you don&#8217;t mind, I&#8217;m going to ask you a question. How do you think the typical WordPress developer or designer would define disability? </p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:09:05] </strong></p>\n\n\n\n<p>in the kinds of conversations that I&#8217;ve had over the years, it frequently has to do with visual things. Because it&#8217;s just screens all day, right? And that&#8217;s a primary area where our designers and developers really have made some effort.</p>\n\n\n\n<p>But my personal favorite sort of, of example, for like, when you&#8217;re looking at how to make sure that your products are accessible is, what, if you have to use your website, or you have to build your website using only one arm. Because that gives you an opportunity to kind of look at disability from a permanent standpoint.</p>\n\n\n\n<p>Like if you have lost permanent use of one arm, but also gives you an opportunity to look at the temporary options for that sort of lack of mobility. Like you&#8217;re a mother with an infant, and so you have to be able to, you know, get your stuff done with one arm. And so I know that we paid a bunch of attention to screen readers and what works in not way back in 2018 and 2019 did a lot of work with. Literally zero screen. And can you still do the thing that you need to do, which was incredibly difficult. And I was really excited to see what our developers came up with around that. But I think that that is quite a bit of that discussion as we&#8217;re going through it from the beginning to the&nbsp;end.</p>\n\n\n\n<p><strong>[Joe Devon 00:10:27] </strong></p>\n\n\n\n<p>Yeah. I mean, that&#8217;s a great answer, and you definitely understand some of the nuances way better than I think that the average creator, digital product creator, I&#8217;m including the, you know, the product people, the designers, and the developers.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:10:42] </strong></p>\n\n\n\n<p>We&#8217;re very fortunate to have more than just developers in WordPress.</p>\n\n\n\n<p><strong>[Joe Devon 00:10:50]  </strong></p>\n\n\n\n<p>The reason I bring this up is that the WHO (World Health Organization) had to; they&#8217;re the ones that did massive research across the globe. And they had to, they had to come up with a definition, and in their definition, they needed to draw a line. Typically, I don&#8217;t remember the exact thing cause it&#8217;s a 350-page report, and I kept looking for where they defined it again.</p>\n\n\n\n<p>It was a little hard to find, but essentially it&#8217;s if there&#8217;s a major disability or a disability that impacts some significant portion of your day-to-day activities. And that&#8217;s really great when you&#8217;re trying to do a report on how many disabilities there are out there; what percentage of the population has a disability?</p>\n\n\n\n<p>And their figures are something like 15% of the population has a disability, which is a huge number. But at the same time, they also mentioned that 2.2 billion people have a visual impairment. And we also know that over 33% of the population is over 50, and I&#8217;m included in that population. And I can say that when you&#8217;re over 50, you know, I&#8217;ve got clouds in my eyes.</p>\n\n\n\n<p>I don&#8217;t know where they came from, but they definitely make it harder to see. When I&#8217;m in a restaurant, I can&#8217;t focus on the person across from me the same way. My hearing is not the same, and anybody over 50 is going to have certain impairments and won&#8217;t see as well; color contrast issues are a big deal.</p>\n\n\n\n<p>Being able to raise the font is a big deal. And I think that accessibility is connected in most people&#8217;s minds with disability. And they&#8217;ll attach that to something like being blind or being deaf or hard of hearing or having a missing limb or having some other kind of disability. </p>\n\n\n\n<p>And, as a result, they&#8217;re like, &#8220;well, I don&#8217;t even know any people in that category possibly,&#8221; and as a result, they&#8217;re like, &#8220;well, how important is this?&#8221; Yes. They might feel guilty. I should do the right thing. This is the right thing to do. But honestly, like how much money should I spend on it? How much, what percentage of my time should I spend on it?</p>\n\n\n\n<p>And it&#8217;s because they don&#8217;t realize that everybody has different abilities. And so, I&#8217;m starting to go away from even talking about disabilities and asking people to remember that all of us perceive things differently. </p>\n\n\n\n<p>Do you remember the gold dress where they were trying to say, what color is this dress? Is it gold and white or blue and black? And it is blue and black, but to me, all I see is gold and white. And then there was Laurel or Yanny. Do you remember that?. And some people heard it, and typically older people heard it as Laurel, and I&#8217;ve, and I do this in some of my presentations. I play that, that sound. And usually, it&#8217;s Laurel for me, but sometimes it&#8217;s Yanny. Even personally, it changes. </p>\n\n\n\n<p>And so, we have a totally different perception. Now think about memory. There&#8217;s a different kind of blindness. If you try and remember, let&#8217;s say a relative or a friend that is no longer. How well do you see that picture?</p>\n\n\n\n<p>Because for me, it is very, very vague, but for some people, they say, and I&#8217;ve been asking people, and I&#8217;d love your answer as well. How vivid is it? And some people say, I can read the, I can see the pattern on the shirt. It&#8217;s as vivid as if I see with opening my eyes, seeing, you know, the regular in front of me, and I can even read a name tag in the memory.</p>\n\n\n\n<p>And I&#8217;m like, Woah, so maybe I&#8217;m blind in a way. Right? So how do you see it? How do you remember things?&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:14:42] </strong></p>\n\n\n\n<p>Oh, I&#8217;m a, I&#8217;m a real visual person and a tactile person. And so, like if I interacted with someone, I&#8217;m very likely to be able to picture, like, recreate that mental picture pretty well in my mind. I recently, very recently, met some of my first people in that executive leadership space who were like, yeah, I don&#8217;t, I don&#8217;t visualize things.</p>\n\n\n\n<p>And I was like, what are you, how do you do this work? Because like, you have to be able to do that. And they were like, no, I don&#8217;t have mental pictures.&nbsp;</p>\n\n\n\n<p><strong>[Joe Devon 00:15:13] </strong></p>\n\n\n\n<p>Some people don&#8217;t have an inner dialogue.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:15:17] </strong></p>\n\n\n\n<p>I don&#8217;t understand that either,&nbsp;</p>\n\n\n\n<p><strong>[Joe Devon 00:15:19] </strong></p>\n\n\n\n<p>Me either. So accessibility studies all of these differences with respect to how you&#8217;re presenting all of this information.</p>\n\n\n\n<p>And if you don&#8217;t pay attention to accessibility, you&#8217;re really just missing out. And then there&#8217;s colorblindness. If you&#8217;re creating something like slack that has an online/offline indicator, and you only use red and green for people who are colorblind, they see gray and gray. And so what I&#8217;m trying to teach the community with digital product creators is that no, you cannot ignore it.</p>\n\n\n\n<p>You can ignore accessibility, but then you&#8217;re not good at your job. I mean, I don&#8217;t mean to say it in an offensive way, but you&#8217;re not good at your job if you&#8217;re unaware. If you break a rule on purpose, great. But if you don&#8217;t know the rule, it&#8217;s just a lack of craft, and you absolutely should make it a priority.</p>\n\n\n\n<p>And you&#8217;re not doing it as a charity. You&#8217;re doing it because you care about your users, and you care about your craft, and you want to build things well, and it&#8217;s a necessity. And I think that this is the kind of message that our community needs to hear.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:16:31]</strong></p>\n\n\n\n<p>I want to touch on something that you sort of brought up a bit, um, at the start of the answer there.</p>\n\n\n\n<p>So you brought up the concept of usability. And in the last time that I did a podcast about accessibility, I defined accessibility as a subset of usability. Do you think that if we were to consistently draw that line for people so that it&#8217;s not just like accessibility is this thing that you should do outside of usability?</p>\n\n\n\n<p>If we were to more consistently draw that line, do you think that that would help people to see and understand better that its shades of existence, usability, and accessibility?  &nbsp;</p>\n\n\n\n<p><strong>[Joe Devon 00:17:10] </strong></p>\n\n\n\n<p>Oh, 100%, a hundred percent. And in my company, we kind of realized that that&#8217;s exactly what we have to do. We have to see this as usability.</p>\n\n\n\n<p>And I don&#8217;t, we talk about accessibility a lot, but I don&#8217;t want to. It&#8217;s part of the plumbing for us. We&#8217;ve made it part of the plumbing, and I can tell you it&#8217;s a struggle to take accessibility and make it part of an organization, even when you&#8217;re bringing it top-down, believe it or not. For our teams, particularly the designers, they are blown away by what they&#8217;re learning because they&#8217;re improving their craft.</p>\n\n\n\n<p>And design is typically where there&#8217;s a struggle to get accessibility accepted because there seems to be a very strong idea of what a design should look like. And I think it&#8217;s really about the approach because UX and design it&#8217;s all about empathy for people. And when you approach it, not as, even though empathy should mean that, that, you know, do the right thing at the same time, it&#8217;s more about empathy for your user, and your user includes so much more than just people with disabilities that you haven&#8217;t run into somebody that has that disability and therefore you build it better, and it&#8217;s, it&#8217;s completely blown their mind. They love it. They love doing it. And I&#8217;m not hiring people with accessibility coming in. We&#8217;re training them to work accessibly. </p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:18:34] </strong></p>\n\n\n\n<p>So I think it&#8217;s interesting that you talk about empathy as part of being able to make sure that you&#8217;re creating something that&#8217;s accessible because I actually feel like empathy is. Like it&#8217;s being considered this gold standard for many, many things right now. And I think it actually is more harmful in the long run than instead making altruistic choices.</p>\n\n\n\n<p>And so, I have a blog post that I will link in our show notes that will kind of help everybody see more fully my concept there. But when you rely on empathy, you do kind of have to rely on one, being able to run into all of the issues you were mentioning. You have to know people who have problems in order to know that the problems exist.</p>\n\n\n\n<p>And then you also kind of have to assume that once you have willingly put yourself into the discomfort of that kind of disability, whatever, wherever it exists on that spectrum, your experience of that discomfort is the same as someone who lives with it. And I just don&#8217;t think that we can necessarily do that.</p>\n\n\n\n<p>I always think that trying to do the altruistic thing, like doing your research and figuring out what it is and trying to make decisions on behalf of other people as best you can, which is a terrible thing. Still, like decisions that take into account the experiences that people are sharing with you and then going to them and saying, &#8220;does this make that experience better or worse?&#8221; is the more sustainable option from my perspective, this is specifically leadership. Still, I think it&#8217;s true for accessibility as well, and probably product design as a whole, but it&#8217;s very difficult. Like people really feel like they understand the concept of empathy right now. And I do think that sometimes that leads us down the wrong path for things.</p>\n\n\n\n<p>What&#8217;s your thought on that? I think you kind of agree based on what your answer was&nbsp;</p>\n\n\n\n<p><strong>[Joe Devon 00:20:33]</strong> </p>\n\n\n\n<p>Oh, no, absolutely. And you know, we, you, can&#8217;t never about us without us, as the common saying, and we&#8217;ve gathered a group of a hundred people with a wide variety of disabilities for research. Whenever we do any UX and research, and sometimes we&#8217;re asked to just do research projects, we go out and ask the users.</p>\n\n\n\n<p>We had some really interesting companies approach us to do innovation and accessibility, and they had strong assumptions. We looked at the assumptions and agreed with it, but we&#8217;re like, all right, they were smart. They said, &#8220;vet this with users for us, please,&#8221; because they didn&#8217;t want to gather their own group.</p>\n\n\n\n<p>We vetted with users, and we&#8217;re blown away, always blown away because there are so many things you just don&#8217;t know unless you&#8217;ve lived with a particular disability. You can&#8217;t guess, and you&#8217;ve got to speak to your users and a wide variety of them. &nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:21:30]</strong></p>\n\n\n\n<p>Yes, absolutely. Absolutely. What role does open source play in expanding accessibility, either in specifically the digital space or just accessibility in general?</p>\n\n\n\n<p><strong>[Joe Devon 00:21:42] </strong></p>\n\n\n\n<p>I guess if the question is, what role does it play? I would say the role it plays is it is, unfortunately, it makes accessibility worse because, for the most part open source is not very accessible. And it&#8217;s a personal passion of mine, so I&#8217;m really glad that you brought that up. </p>\n\n\n\n<p>You know, it is so bizarre. You write a blog post and then it goes viral, and it goes viral every year to a degree that you can&#8217;t even believe it, that all these companies that you know are running events. Privately, publicly talking about it. And then you get all these people thanking you for what you&#8217;ve done year after year.</p>\n\n\n\n<p>And then one year, you read on Twitter, The Blind Onion; I&#8217;m sure you&#8217;re familiar with The Onion, the satirical clip, there&#8217;s the Blind Onion. And they tweet out, &#8220;Now that Global Accessibility Awareness Day is over, we look forward to 364 days of global accessibility oblivion.&#8221; And that really hurt at the time, but at the same time, and I was told to ignore it, don&#8217;t worry about it, but I&#8217;m like, no, this is coming from a place of pain.</p>\n\n\n\n<p>And the point of GAAD was to make a difference. It wasn&#8217;t too to just give everybody an opportunity to say, &#8220;Hey, look at what we&#8217;re doing,&#8221; and then not make a difference. So, as a result of that, I started to think about, well, where are we with this? And, and so I&#8217;ve created a state of accessibility report that through my company, we&#8217;re able to run for a few years, and it&#8217;s not, you know, the state is not great.</p>\n\n\n\n<p>And I&#8217;m like, well, what can we do to change things? So, as a result of all of this, I really wanted to figure out, well, what can we do to make sure that GAAD does make a difference? And so, I came up with the idea of the GAAD pledge, which is specifically meant for open source frameworks. </p>\n\n\n\n<p>And the idea of the GAAD pledge is that an open source framework, when they are ready, takes the pledge to make accessibility a core value of the framework. Now, terms of what that actually entails are different for every single project because every project is unique. We did create a bit of a framework, which had the idea of saying, okay, you&#8217;re going to, first of all, create an accessibility statement that says that this framework is going to conform to whatever, WCAG, which is Web Content Accessibility Guidelines, to whatever WCAG level is decided and is appropriate for the framework. That there&#8217;s going to be documentation for anybody that is downloading this piece of open source project and trying to implement it, that there should be guidelines for them, that all of the examples should be accessible. </p>\n\n\n\n<p>It&#8217;s really important because even the frameworks that try to pay attention to accessibility. You&#8217;ll often see that people from the community will provide examples, and they&#8217;re inaccessible. And it&#8217;s really sad when you see that because so many people are just copy-pasting. That&#8217;s typically how it works, and they&#8217;re going to copy-paste something bad. So putting a statement around it, I think, would be really great.</p>\n\n\n\n<p>And what we&#8217;re hoping to see is that lots and lots of big open source communities decide to take the pledge. And then it&#8217;ll sort of be table stakes that any new open source projects as well look, all of these frameworks that made it, they took the pledge and therefore we should take the pledge as well.</p>\n\n\n\n<p>And so the very first year, we had React Native take the pledge, and they put a lot of effort into their accessibility. The second group to take it was Ember.js, and they always put a lot of effort into their accessibility, and they continued that effort. We&#8217;re about to announce the next one, but we&#8217;re still two weeks away.</p>\n\n\n\n<p>So I can&#8217;t say anything yet, but yeah, we&#8217;re, uh, we&#8217;re hoping for a lot more uptake on, on the gap pledge because it, it affects so many people downstream. WordPress&#8217;s what percent of the web right now? 43%? So there you go. That&#8217;s so many people.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:25:57] </strong></p>\n\n\n\n<p>So many people. Yeah, fun fact Gutenberg, our current rewriting of the editing experience in WordPress, primarily uses React. And so, I&#8217;m glad to hear that they have taken that pledge as well. </p>\n\n\n\n<p>As with any good cooking, it starts with good&nbsp;ingredients.</p>\n\n\n\n<p><strong>[Joe Devon 00:26:12] </strong></p>\n\n\n\n<p>You said it. That was great. I wish I was a cook, though.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:26:23] </strong></p>\n\n\n\n<p>I love it. All right. Let&#8217;s what keeps you up at night when it comes to the state of accessibility?&nbsp;</p>\n\n\n\n<p><strong>[Joe Devon 00:26:29] </strong></p>\n\n\n\n<p>What keeps me up at night is how to move the needle. It is such a big thing to change. And there are so many angles that you can approach this with, but at the end of the day, it&#8217;s, it&#8217;s a monster.</p>\n\n\n\n<p>It&#8217;s a monster. There are so many legacy sites out there. If you look at WebAIM, they do a yearly report on the state of accessibility as well. They call it the WebAIM Million, and they&#8217;re typically seeing 97% inaccessible, 98%. It goes up and down a little bit every year. And that&#8217;s, that&#8217;s just a huge boat to move.</p>\n\n\n\n<p>I think we need to at least get the newer, uh, newer websites and mobile apps to move. And what we&#8217;ve seen in our state of accessibility report is that only the very top companies seem to put in the effort to make their products accessible. There is a big push with the enterprise companies to do it.</p>\n\n\n\n<p>The CEOs are starting to talk about it, but what we need is the entire culture of software development to change. Or I should even say digital product development change and to move that boat is massive. And that&#8217;s I put it in my tagline in my email like that&#8217;s my mission in life, and I hope to achieve it before I die.</p>\n\n\n\n<p>So that keeps me up at night.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:27:52] </strong></p>\n\n\n\n<p>I think that would keep me up at night as well. I mean, it seems like you are really just personally mission-driven and impact-driven. Do you feel like, in the event that the work that you&#8217;ve accomplished so far is what you accomplish, you feel still like you&#8217;ve had an impact?</p>\n\n\n\n<p>I feel like you have had&nbsp;an impact. </p>\n\n\n\n<p><strong>[Joe Devon 00:28:13] </strong></p>\n\n\n\n<p>I&#8217;m not one of those people that tries to have a legacy or like tries to focus on what my impact is and all of that. I just try and do good work. And hopefully, it just shows at the end of the day. I&#8217;m just trying to have the impact without the accolades.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:28:34]</strong></p>\n\n\n\n<p>I get it. Well, Joe, thank you so much for joining us here on this episode of WP Briefing. You have been a delight to chat with.</p>\n\n\n\n<p><strong>[Joe Devon 00:28:42]</strong></p>\n\n\n\n<p>Likewise, it&#8217;s really been a pleasure to meet you, and uh, and I appreciate the opportunity.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:28:54] </strong></p>\n\n\n\n<p>And now it&#8217;s time for our smallest of big things. As I mentioned at the start, it is packed. Number one tomorrow, May 17th, RC3. So one of the final RCs that we&#8217;re going to have for the WordPress 6.0 release, unless something goes horribly, horribly wrong, which I don&#8217;t think it will. </p>\n\n\n\n<p>And then, two days after that, Global Accessibility Awareness Day, as I mentioned, will be on May 19th. So, this coming Thursday. </p>\n\n\n\n<p>And then next week, we have the 6.0 release. We have the WordPress 6.0 release on May 24th. </p>\n\n\n\n<p> Three days after that, WordPress turns 19 on May 27th, starting its final teenage year before we turn twenty in 2023. So that was the rapid-fire dance card for the next two weeks.</p>\n\n\n\n<p>The stuff that is happening with and around WordPress for everyone to know. As a heads up, also, many people are headed to WordCamp Europe in Porto(, Portugal). The first week of June, I am going to do a live from WordCamp Europe episode. It will not be live. I&#8217;ll just record it live. And so. You know you&#8217;ll get to hear me with my hoarsest voice and maybe singing to my computer. Cause that almost always happens at these things. </p>\n\n\n\n<p>And that, my friends, is your small list of big things. Thank you for tuning in today for the WordPress Briefing. I&#8217;m your host, Josepha Haden Chomphosy. And I&#8217;ll see you again in a couple of weeks.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 16 May 2022 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Chloe Bringmann\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:117:\"Gutenberg Times: Three Block Theme Generators, Gutenberg 13.2,  Coupons with Blocks and more –  Weekend Edition 215\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=21139\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:120:\"https://gutenbergtimes.com/three-block-theme-generators-gutenberg-13-2-coupons-with-blocks-and-more-weekend-edition-215/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:16135:\"<p>Howdy, </p>\n\n\n\n<p>I can hardly wait to be in the same room with fellow contributors across many teams during Contributor Day at WordCamp Europe, collaborate on the open-source project tasks, and meet new contributors in person!  </p>\n\n\n\n<p>Next week, my husband and I will fly to Porto for a two-week work-cation prior to WordCamp Europe. We will explore Portugal&#8217;s second largest city and its wider area during lunch breaks, evening strolls and weekend excursions. It&#8217;s a new way of traveling for us and we are grateful for our remote work so we can stay for a longer period of time in a city. </p>\n\n\n\n\n\n<p>And now back to the topic at hand: News and community resources around the  block editor, block themes, full-site editing and more.</p>\n\n\n\n<p>Enjoy the mixture of articles and post. Have a great weekend! </p>\n\n\n\n<p>Yours, ?<br />Birgit </p>\n\n\n\n\n<div class=\"wp-container-1 wp-block-group has-light-background-background-color has-background\"><div class=\"wp-block-group__inner-container\">\n<p><strong>Table of Contents</strong></p>\n\n\n\n<div class=\"wp-block-sortabrilliant-guidepost\"><ul><li><a href=\"https://gutenbergtimes.com/feed/#2-this-weeks-releases\">This week&#8217;s releases </a><ul><li><a href=\"https://gutenbergtimes.com/feed/#3-word-press-6-0-and-gutenberg-13-2\">WordPress 6.0 RC2</a></li><li><a href=\"https://gutenbergtimes.com/feed/#4-gutenberg-13-2\">Gutenberg 13.2</a></li></ul></li><li><a href=\"https://gutenbergtimes.com/feed/#0-block-theme-generators\">Three Block Theme Generators</a></li><li><a href=\"https://gutenbergtimes.com/feed/#1-full-site-editing\">Full Site Editing &amp; Plugins for site builders</a></li><li><a href=\"https://gutenbergtimes.com/feed/#3-developing-custom-blocks-and-tools\">Developing Custom Blocks and Tools</a></li><li><a href=\"https://gutenbergtimes.com/feed/#6-upcoming-word-press-social-learning-meetups\">Upcoming WordPress Social Learning Meetups</a></li></ul></div>\n</div></div>\n\n\n\n\n<h2 id=\"2-this-weeks-releases\">This week&#8217;s releases </h2>\n\n\n\n<h3 id=\"3-word-press-6-0-and-gutenberg-13-2\">WordPress 6.0 RC2</h3>\n\n\n\n<p><a href=\"https://wordpress.org/news/2022/05/wordpress-6-0-release-candidate-2-rc2-now-available-for-testing/\"><strong>WordPress 6.0 Release Candidate 2 (RC2) Now Available for Testing</strong></a>. It seems everything is on track for the final release scheduled for May 24, 2022. </p>\n\n\n\n<p>Curious what WordPress 6.0 looks like? Watch this great video by <strong>Jamie Marsland </strong> with short succinct demos of the most important features for site builders and he asks <strong><a href=\"https://www.youtube.com/watch?v=gtNgk6pZBqA\">WordPress 6: The Most Exciting Update Ever?</a></strong></p>\n\n\n\n<p>Can you believe, Core Contributors already <a href=\"https://make.wordpress.org/core/2022/05/11/early-bug-scrub-schedule-for-6-1/\">started Bug Scrubs for 6.1</a>? I guess you can never start too soon. </p>\n\n\n\n<h3 id=\"4-gutenberg-13-2\">Gutenberg 13.2</h3>\n\n\n\n<p>For the first time, <strong><a href=\"https://twitter.com/revgeorge\">George Hotelling</a></strong> led the release for the Gutenberg plugin and posted the release notes: <a href=\"https://make.wordpress.org/core/2022/05/12/whats-new-in-gutenberg-13-2-may-11/\"><strong>What’s new in Gutenberg 13.2? (May 11)</strong></a>. Many PRs were Bug fixes, and not so many new features. Hotelling highlights the new <a href=\"https://make.wordpress.org/core/#save-editor-preferences\">save method for user&#8217;s editor preferences</a>. Now that the preferences (Welcome buide, Full Screen, Top Toolbar etc) are stored in the user meta table of the site, you can now access the site from any computer and it will remember the choices you made. We waited quite a while for this feature to land. </p>\n\n\n\n<p><strong><a href=\"https://twitter.com/justintadlock\">Justin Tadlock</a></strong> took the plugin for spin and he has more details in his article: <a href=\"https://wptavern.com/gutenberg-13-2-adds-persistent-user-preferences-and-a-visualizer-for-margin-and-padding-controls\">Gutenberg 13.2 Adds Persistent User Preferences and a Visualizer for Margin and Padding Controls</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Earlier this week, I was part of the <a href=\"https://wpbuilds.com/2022/05/10/this-week-in-wordpress-208/\"><strong>This Week in WordPress #208</strong></a> live show and podcast. with&nbsp;Daniel Schutzsmith,&nbsp;Nathan Wrigley, and&nbsp;Michelle Frechette.</p>\n\n\n\n<img />\n\n\n\n<p>We talked about FSE Testing Call 14 using the refactored List and Quote Blocks, the new feature to assign patterns to the page creation process, the Artist in Residence program by DigitalCube, introduced by Rachel Winchester and so much more. It was lovely to connect with my friends again. We had great fun. Listen in! </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<h2 id=\"0-block-theme-generators\">Three Block Theme Generators</h2>\n\n\n\n<p>Ever we started seeing Full-site editing evolving, community members pushed the envelop and created tools for creating themes. Today, I put three of them in one space. </p>\n\n\n\n<p><a href=\"https://www.themegen.app/\"><strong>ThemeGen.App</strong></a> by <a href=\"https://twitter.com/dgwyer\"><strong>David Gwyer</strong></a> was very early and the site provides you an easy way to make all the color and settings choices via a nice web interface and then create a theme.json file. </p>\n\n\n\n<p><strong>Carolina Nymark</strong>&#8216;s <a href=\"https://fullsiteediting.com/block-theme-generator/\"><strong>Block Theme Generator</strong></a> makes a few decisions for you. She offers visitors to download a basic block theme, and empty theme and an advanced block theme. The latter is the best teaching tool, as it includes not only a bare bones theme, but also example templates, block patterns and block styles. With help of a bare bones form, you also can select your color palette and some default settings. </p>\n\n\n\n<p>While both mentioned Block Theme Generators are aimed at the Theme developers working with code, <strong><a href=\"https://twitter.com/pootlepress\">Jamie Marsland</a> of PootlePress</strong> just built a <a href=\"https://www.youtube.com/redirect?event=video_description&redir_token=QUFFLUhqbHdSbUFVbnlGNUMtaUNwV010UnlORFN4WXJKQXxBQ3Jtc0trOUozOWRsMWZ2Ym91c25RcVB2bHJVZGlIWmFVaHhjR2lsMncxckIxQnppZlFsQnBmbkJ3aXd2QmtqN2tEbF8wLWJia192cjFSQzBydTBuUGhXTXBWcmFlSnlJbjlxbDVZVEt2OS11SEZ5eUREUS1iSQ&q=https%3A%2F%2Fwww.pootlepress.com%2Fwordpress-theme-builder%2F&v=mtINY03lycY\"><strong>Block Theme Generator</strong></a> that&#8217;s aimed at the #nocode site builder. It&#8217;s fairly new and used out of the box tools and the WordPress site editor to design every aspect of a theme that you then can export. Marsland explains <a href=\"https://www.youtube.com/watch?v=mtINY03lycY\">in this video on YouTube</a>, how he built it, why Theme Export is such a big deal, and how you can also build a theme generator for you team.</p>\n\n\n\n<h2 id=\"1-full-site-editing\">Full Site Editing &amp; Plugins for site builders</h2>\n\n\n\n<p><a href=\"https://wptavern.com/wordpress-6-0-to-ship-new-block-locking-feature\"><strong>WordPress 6.0 To Ship New Block Locking Feature</strong></a> &#8211; <strong>Justin Tadlock</strong> gives you a sneak preview on the new feature. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Full-site editing experience is not for everyone yet. <strong><a href=\"https://twitter.com/RuthRaventos\">Ruth Raventós</a></strong>, CEO of Nelio, after explaining what FSE entails, walk you through the decision-making process on <a href=\"https://neliosoftware.com/blog/how-do-i-change-my-website-to-full-site-editing-fse/\"><strong>if your site, your online business, is suited to adopt aspects of FSE.</strong></a> It&#8217;s not a technical evaluation, rather than a strategic approach. &#8220;The first task you should do is to understand all the functionalities you want your “new” website to have and see which of them can be provided by FSE. Then, for those that are provided by plugins, evaluate if they are compatible with FSE or what alternatives you have.&#8221; Ruth Raventós wrote. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"has-drop-cap\">4 (<strong>four)</strong> more days, until May 18th, 2022, to heed the <strong><a href=\"https://make.wordpress.org/test/2022/04/28/fse-program-testing-call-14-rallying-recipe-reviewers/\">FSE Program Testing Call #14: Rallying Recipe Reviewers</a>.</strong> It&#8217;s also available in <em>Italian.</em> <em>(<a href=\"https://it.wordpress.org/team/2022/05/11/chiamata-per-il-test-del-programma-fse-14-raduniamo-i-recensori-di-ricette/\">Raduniamo i recensori di ricette</a>)</em>, thanks to <a href=\"https://twitter.com/succoallapera\"><strong>Piermario Orecchioni</strong></a></p>\n\n\n\n<p><strong>Anne McCarthy</strong>, <strong>Courtney Robertson</strong> and <strong>Sarah Snow</strong> tested all the features mentioned in the call for testing together in a zoom video meeting. If you don&#8217;t have time to do the testing yourself, but want to know what&#8217;s in the pipeline you can watch this on WordPress.TV: <strong><a href=\"https://wordpress.tv/2022/05/02/testing-wordpress-together-new-interactivity-features-for-recipe-websites/\">Testing WordPress Together: New Interactivity Features for Recipe&nbsp;Websites </a></strong></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Vikas Singhal</strong> <a href=\"https://twitter.com/vikasprogrammer/status/1524633033764184066\">announced</a> that <a href=\"http://Gutena.io\">their block theme <strong>Gutena</strong></a> already supports Webfonts API that allows you to host fonts locally, with a single line in theme.json. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In his latest Building with Blocks post, <strong>Justin Tadlock</strong> walks you through the process of <a href=\"https://wptavern.com/how-to-build-coupon-cards-with-wordpress-blocks\"><strong>How To Build Coupon Cards With WordPress Blocks</strong></a>. Get ready for the 2022 eCommerce season for Black Friday and Cyber Monday in the fall. Or for any other eCommerce sale you might have in mind. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://twitter.com/2ndKauBoy\">Bernhard Kau</a></strong>, who is not only co-organizer of this year&#8217;s WordCamp Europe but also a plugin developer, just released a new plugin: <a href=\"https://wordpress.org/plugins/campaign-archive-block-for-mailchimp/\"><strong>Campaign Archive Block for Mailchimp</strong></a></p>\n\n\n\n<p>After adding an API key in the settings, the block displays the latest newsletters from your Mailchimp account. Kau has added some display settings and a control for the numbers of campaigns to be listed. This way, you keep your visitors for one more page on your site before they head off to read you latest campaigns. A plugin that does one thing and only one thing. The best kind of block. </p>\n\n\n\n<img />\n\n\n\n<p>It&#8217;s a solid first version and if you are interesting in a short twitter exchange between Kau and myself,  on possible improvements, <a href=\"https://twitter.com/2ndKauBoy/status/1525545215326658561\">you can follow along here</a>. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Munir Kamal</strong>, developer of the EditorPlus plugin, demonstrates in this video <a href=\"https://www.youtube.com/watch?v=v52gIxyDXzg\">How to Create Animated Search Box in Gutenberg</a>. All through the plugin and a short CSS snippet added to the backend for rendering the animation. Pretty nifty! </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Justin Tadlock</strong> reviewed one of the newest block themes: <a href=\"https://wptavern.com/catch-fse-is-a-bold-business-friendly-wordpress-block-theme\"><strong>Catch FSE Is a Bold, Business-Friendly WordPress Block Theme</strong></a></p>\n\n\n\n<h2 id=\"3-developing-custom-blocks-and-tools\">Developing Custom Blocks and Tools</h2>\n\n\n\n<p>Core contributor and Gutenberg developer <strong><a href=\"https://twitter.com/get_dave\">Dave Smith</a></strong>, gave a presentation recently on <a href=\"https://www.youtube.com/watch?v=Bqj2J1QYYoI\"><strong>Gutenberg Now, Next and How to Use it Better Today</strong></a>. </p>\n\n\n\n<p>He spoke to developers at the WordPress agency <a href=\"https://twitter.com/cornershop\">CornerShop Creative</a> who are building sites for nonprofits, small and large. The video description has time stamps so you can jump to the relevant topics. Smith also points out that the second half of the presentation was Live Q &amp; A and he provided answers to questions, you might have too. <a href=\"https://aheadcreative.co.uk/wp-content/uploads/2022/05/Cornershop-Creative-Presentation-2022.pdf\">The slidedeck is available online.</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Liam Giddy </strong>ventured into <a href=\"https://www.advancedcustomfields.com/blog/build-business-listing-acf-blocks-query-loop-block-theme/\">building a business listing using ACF Blocks and the Query Loop Block with a block theme</a> and created this tutorial. It&#8217;s great step  on the journey to switch to block theme development.</p>\n\n\n\n<h2 id=\"6-upcoming-word-press-social-learning-meetups\">Upcoming WordPress Social Learning Meetups</h2>\n\n\n\n<p><strong>May 18, 2022 &#8211; 6 pm EDT / 22:00 UTC</strong><br /><strong><a href=\"https://www.meetup.com/wordpress-social-learning/events/285518331/\">Sticky Styling: Getting Colors, Fonts, and Sizes to Stick</a></strong> w/ Sarah Snow</p>\n\n\n\n<p><strong>May 19, 2022 5pm EDT / 21:00 UTC</strong><br /><a href=\"https://www.meetup.com/wordpress-social-learning/events/285412812/\"><strong>Using the Navigation Block</strong></a>&nbsp;w/ Wes Theron</p>\n\n\n\n<p><strong>May 19, 2022 &#8211; 2pm EDT / 18:00 UTC</strong><br /><strong><a href=\"https://www.meetup.com/wordpress-social-learning/events/285518331/\">Builder Basics: Working with Templates in Full Site Editing (Part 3</a></strong><a href=\"https://www.meetup.com/wordpress-social-learning/events/285518274/\"><strong>)</strong></a> w/ Nick Diego</p>\n\n\n\n<p><strong>May 23, 2022 1pm EDT / 17:00 UTC</strong> <br /><strong><a href=\"https://www.meetup.com/wordpress-social-learning/events/285798142/\">Hello Blocks! Coding a custom block</a></strong> w/ Ryan Welcher</p>\n\n\n\n<p><strong>May 25, 2022 &#8211; 7pm EDT / 23:00 UTC </strong><br /><strong><a href=\"https://www.meetup.com/wordpress-social-learning/events/285577455/\">Design With Me: Create a Simple Website for your Small Business</a></strong> w/ Sarah Snow</p>\n\n\n\n\n<p><em>Featured Image: Skyline of Chicago by Birgit Pauli-Haack (Nov 2021)</em></p>\n\n\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-left\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\n\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\"><br />Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too and won&#8217;t give your email address to anyone except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 14 May 2022 19:47:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:111:\"WPTavern: WordSesh 2022 Kicks Off Monday, May 16, Featuring a World-Class Speaker Lineup and Hands-On Workshops\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=134352\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:120:\"https://wptavern.com/wordsesh-2022-kicks-off-monday-may-16-featuring-a-world-class-speaker-lineup-and-hands-on-workshops\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4797:\"<p><a href=\"https://wordsesh.com/\">WordSesh 2022</a>, the live, virtual conference for WordPress professionals, is right around the corner. The event runs from May 16–20, 2022. While previous WordSesh events have always been high quality, this particular edition is jam-packed with a diverse selection of industry experts &#8211; many who have been building high impact projects with WordPress for years.</p>\n\n\n\n<img />A sampling of the speakers for WordSesh 2022\n\n\n\n<p>This year&#8217;s WordSesh will feature 20 sessions, 3 keynotes, and two in-depth workshops. On May 19, at 8PM EDT, frontend developer Ellen Bauer from Elma Studio will guide users in a workshop on how to &#8220;Convert a Classic Theme to a Block Theme.&#8221; If you are a theme developer who hasn&#8217;t taken the leap into block themes, this workshop will get you started:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Together, we will set up the header and footer in a block theme, learn to work with Templates and Template Parts, set up page contents, and dive into how Styles work.</p><p>Throughout the workshop we&#8217;ll discuss which website projects can benefit from the new FSE features the most, what limitations we are still facing, and how the future of WordPress themes will most likely look.</p></blockquote>\n\n\n\n<p>The second workshop will be given by Tiffany Bridge, Product Manager at Nexcess, on May 20. She will give attendees an overview of how to prepare their web properties for a high traffic event.</p>\n\n\n\n<p>One of the most exciting sessions on the schedule is the keynote on May 19. The team that rebuilt <a href=\"https://www.whitehouse.gov/\">WhiteHouse.gov</a> on WordPress in just six months will join the event to talk about the project. Other topics on the schedule include custom block development, headless WordPress, hacking, client services, performance, accessibility, and user experience.</p>\n\n\n\n<p>In 2021, Brian Richards, founder of <a href=\"https://wpsessions.com/\">WPSessions.com</a> and organizer of WordSesh, has transitioned the event to be more inclusive of timezones around the world. This year&#8217;s event will happen over the course of four days, with time offsets that accommodate a global audience. The first block of sessions is optimally timed for attendees across Asia and the Pacific. Day 2 is designed for attendees across Europe, Middle East, and Africa, and day 3 will cater to attendees in the Americas, Iceland, and Greenland.</p>\n\n\n\n<p>&#8220;In 2019 and 2020 I ran entirely separate events for each region, but in 2021 I brought them back together as a single event,&#8221; Richards said. &#8220;I found it was a lot easier to get people excited about and paying attention to one big WordSesh event.</p>\n\n\n\n<p>&#8220;It feels more inclusive this way, even though the separate events were also open to attendees from around the world. I think that’s primarily because there is <em>something</em> that is conveniently scheduled for someone no matter where they live. And with a single event, watching the recordings feels more akin to catching up on the pieces you missed rather than trying to watch talks for an event that was designed for somebody else.&#8221;</p>\n\n\n\n<p>The scheduling modifications seem to be working, as the last event in 2021 hosted 3,600 attendees, making WordSesh the second largest WordPress community event behind WCEU 2020. </p>\n\n\n\n<p>Richards continues to curate a high-quality speaker lineup year after year, through the help of attendee surveys, which reveal where people are spending their time, attention, and money. WordSesh pays its speakers and Richards also invests time for personal outreach. Through this combination, he said the schedule fills up fast.</p>\n\n\n\n<p>&#8220;I think paying the speakers certainly helps with recruiting such incredible presenters, but I imagine that’s more icing on the cake for most speakers,&#8221; Richards said. &#8220;Probably the biggest draw is the history WordSesh now has (this is the 9th year and 12th event, officially), helped by the ever-increasing reach of my own personal network.&#8221;</p>\n\n\n\n<p>Until 2021, Richards had been running the events entirely by himself. Last year he hired a part-time assistant and also started contracting out the video editing, which has helped him keep the event running more efficiently. It is quite a feat to have hosted WordSesh so many years running when many comparable virtual WordCamps of this caliber often rely on a large team of volunteers and organizers. </p>\n\n\n\n<p><a href=\"https://wordsesh.com/register/\">Registration for WordSesh</a> is still open and it&#8217;s <strong>free</strong> for anyone to attend. The event will be live captioned by real people and all sessions will be recorded for purchase later on WPSessions.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 13 May 2022 19:35:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"Post Status: WordPress Podcast and Video Picks for the Week of May 8\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=97445\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://poststatus.com/wordpress-podcast-and-video-picks-for-the-week-of-may-8/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2661:\"<div class=\"has-background has-theme-palette-7-background-color wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">Jane Genova on overcoming ageism. Courtney Robertson on Learn #WordPress. 10 lesser-known browser APIs. PHP encryption. Free FSE theme. </p></div>\n\n\n<h2 id=\"h-my-podcast-picks\">My Podcast Picks <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f399.png\" alt=\"?\" class=\"wp-smiley\" /></h2>\n\n\n\n<ul><li><strong>Freelancing After 50</strong>: <strong>Jane Genova</strong> <a href=\"https://anchor.fm/freelancingafter50/episodes/Episode-3-Interview-with-Jane-Genova--Veteran-Freelancer--One-of-the-Smartest-People-I-Know-e1id3lk\">on dealing with marketplace age bias</a> and her &#8220;reset&#8221; — shifting her services and mindset to fit prevailing marketing forces.&nbsp;</li><li><strong>WP Tavern Jukebox:</strong> <strong>Courtney Robertson</strong> <a href=\"https://wptavern.com/podcast/26-courtney-robertson-on-how-the-learn-project-is-educating-people-about-wordpress\">discusses</a> how the <strong>Learn Project</strong> educates people about WordPress.</li><li><strong>Syntax.fm</strong>: <a href=\"https://syntax.fm/show/456/10-nifty-browser-apis\">10 browser APIs</a> you might not be familiar with.</li></ul>\n\n\n\n<h2 id=\"h-my-video-picks\">My Video Picks <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f4fa.png\" alt=\"?\" class=\"wp-smiley\" /></h2>\n\n\n\n<ul><li><strong>Best Ways To Encrypt Passwords, Keys, and More With PHP</strong>: <strong>Thomas McGee</strong> from <strong>Delicious Brains</strong> <a href=\"https://www.youtube.com/watch?v=ekesz19MhOQ\">covers hashing, secret key encryption, and envelope encryption</a>.</li><li><strong>Bricksy</strong>: A <a href=\"https://www.youtube.com/watch?v=Z_VScu1KaI0\">video tour</a> of a recently released (and free) full site editor theme.</li></ul>\n\n\n\n<div class=\"wp-container-1 wp-block-group has-theme-palette-8-background-color has-background\"><div class=\"wp-block-group__inner-container\">\n<p><strong>Get our weekly WordPress community news digest</strong> — Post Status\' <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> — also available in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f48c.png\" alt=\"?\" class=\"wp-smiley\" />  </p>\n\n\n\n<p>And don\'t miss <strong>the latest updates from the people making WordPress</strong>. We\'ve got you covered with <a href=\"https://poststatus.com/make-wordpress/\">This Week at WordPress.org</a>. <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/2699.png\" alt=\"⚙\" class=\"wp-smiley\" /></p>\n</div></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 13 May 2022 19:12:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"David Bisset\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"Post Status: Post Status Comments (No. 9) — The State of WordPress Market Share\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=97556\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://poststatus.com/the-state-of-wordpress-market-share/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5862:\"<h2 id=\"h-in-order-for-wordpress-to-win-the-rest-of-the-competition-doesn-t-have-to-lose-david-bisset\">“In order for WordPress to win, the rest of the competition doesn’t have to lose.” — David Bisset</h2>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-drop-cap\">How should the WordPress community react to <a href=\"https://poststatus.com/does-market-share-matter/\">the first recorded dip in market share</a>? Is a small decline something to be concerned about or more of an opportunity to examine what defines WordPress as a successful platform? Are the Gutenberg project, Full Site Editing, other core features, or competitor innovations important factors? Should some organizations in the WordPress space be playing a bigger role as contributors? </p>\n\n\n\n<p>Special guests <strong>Joost de Valk</strong>, <strong>Alex Denning</strong>, and <strong>Jessica Frick</strong> discuss these subjects with host <strong>David Bisset</strong> — and near the end <strong>Ben Gabler</strong> joins in.</p>\n\n\n\n\n\n\n\n<p class=\"has-background\"><strong>Post Status Comments</strong> <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f4ac.png\" alt=\"?\" class=\"wp-smiley\" /> is a stage for WordPress professionals to exchange ideas and talk about recent topics and trends.<br /><br /><a href=\"https://poststatus.com/podcast/comments/\">Browse past episodes</a> and subscribe to <a href=\"https://poststatus.com/podcasts/\">our podcasts</a> on&nbsp; <a href=\"https://open.spotify.com/show/1m3xwXbe0MG5BzFVPtB0A7\">Spotify</a>, Amazon Music, <a href=\"https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5zaW1wbGVjYXN0LmNvbS8ySkU5c2M4UA\">Google Podcasts</a>, <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\">iTunes</a>, <a href=\"https://castro.fm/podcast/c53552c6-1ee0-4fc4-9de4-08ed6bf1ee4d\">Castro</a>, <a href=\"https://www.youtube.com/c/PostStatus\">YouTube</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\">Stitcher</a>, <a href=\"https://player.fm/series/wordpress-post-status-podcasts\">Player.fm</a>, <a href=\"https://pca.st/05rR\">Pocket Casts</a>, <a href=\"https://wordpress-post-status-draft-podcast.simplecast.com/\">Simplecast</a>, or get them by <a href=\"https://feeds.simplecast.com/2JE9sc8P\">RSS</a>. <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f399.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n\n\n\n<h3 id=\"h-mentioned-in-the-show\"><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f517.png\" alt=\"?\" class=\"wp-smiley\" /> Mentioned in the show:</h3>\n\n\n\n<ul><li><a href=\"https://joost.blog/wordpress-market-share-shrinking/\">WordPress’ market share is shrinking</a></li><li><a href=\"https://wpreview.io/wordpress-discontinued-ipod/ https://wpreview.io/wordpress-discontinued-ipod/\">What WordPress has to do with the Discontinued iPod</a></li><li><a href=\"https://getellipsis.com/blog/105m-searched-wordpress-terms/https:/getellipsis.com/blog/105m-searched-wordpress-terms/\">A 0.4% drop in WordPress CMS market share doesn’t really matter</a> (Article)</li><li><a href=\"https://twitter.com/AlexDenning/status/1524743992524427265\">Alex Denning WordPress\' Market Share Twitter Thread</a></li><li><a href=\"https://twitter.com/AlexDenning/status/1524743999390593026\">Continuation of Alex Denning WordPress\' Market Share Twitter Thread</a></li><li><a href=\"https://twitter.com/richard_tabor/status/1524731039112962050\">Rich Tabor reply on Full Site Editing on Twitter</a></li><li><a href=\"https://twitter.com/nickmdiego/status/1525066224828354560\">Nick Diego </a><a href=\"https://twitter.com/richard_tabor/status/1524731039112962050\">reply on Full Site Editing</a> <a href=\"https://twitter.com/nickmdiego/status/1525066224828354560\">on Twitter</a> Part 1</li><li><a href=\"https://twitter.com/nickmdiego/status/1525074482976772096\">Nick Diego reply on Full Site Editing on Twitter</a> Part 2</li><li><a href=\"https://getellipsis.com/blog/105m-searched-wordpress-terms/\">105,495,450 searches for WordPress terms in the last 12 months, up 7.5% year-on-year</a><a href=\"https://wptavern.com/clarity-ad-blocker-for-wordpress-announced-receives-mixed-reactions\"></a></li></ul>\n\n\n\n<div class=\"wp-block-columns has-theme-palette-8-background-color has-background\" id=\"WP-Engine\">\n<div class=\"wp-block-column\">\n<h3 id=\"sponsor-bluehost\"><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f64f.png\" alt=\"?\" class=\"wp-smiley\" /> Sponsor: <a href=\"https://poststat.us/wpengine/\">WP Engine</a></h3>\n\n\n\n<p><strong>WP Engine</strong> is <a href=\"https://poststat.us/wpengine/\">the WordPress Digital Experience Platform that drives your business forward faster</a>. WP Engine makes WordPress easier and faster. It does the heavy lifting so you can focus on your core business and win online.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center\">\n<div id=\"WP-Engine\" class=\"wp-block-image\"><a href=\"https://poststat.us/wpengine/\"><img width=\"112\" height=\"151\" src=\"https://cdn.poststatus.com/wp-content/uploads/2022/01/WPE-LOGO-S-Default.svg\" alt=\"WP Engine\" class=\"wp-image-95924\" title=\"WP Engine\" /></a></div>\n</div>\n</div>\n\n\n\n<h3 id=\"follow-our-panelists-and-post-status-on-twitter-a4ffc805-90f1-41dc-9135-61b3ff20cb40\">Follow Our Panelists (and Post Status) on Twitter:</h3>\n\n\n\n<ul><li><a href=\"https://twitter.com/jdevalk\">Joost de Valk</a> (Twitter)</li><li><a href=\"https://twitter.com/AlexDenning\">Alex Denning</a> (Twitter)</li><li><a href=\"https://twitter.com/renewabelle\">Jessica Frick</a> (Twitter)</li><li><a href=\"https://twitter.com/ben_gabler\">Ben Gabler</a> (Twitter)</li><li><a href=\"https://twitter.com/dimensionmedia\">David Bisset</a> (Twitter)</li><li><a href=\"https://twitter.com/post_status\">Post Status </a>(Twitter)<a href=\"https://twitter.com/post_status\" target=\"_blank\" rel=\"noreferrer noopener\"></a></li></ul>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 13 May 2022 18:30:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"David Bisset\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"Post Status: Post Status Upgrade — Zen and the Art of Lockpicking\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=97528\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://poststatus.com/post-status-upgrade-zen-and-the-art-of-lockpicking/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2550:\"<p class=\"has-background\">Learn new skills and build your knowledge to enhance your career in WordPress! <strong>Post Status Upgrade</strong> is an ongoing series of live workshops centered around a particular skill or learning activity.</p>\n\n\n\n<p class=\"has-drop-cap\">Watch Robert Rowley explain the basics of lock picking in this live, hands-on workshop for Post Status members that took place on May 5th, 2022. Watch as Robert teaches participants how to open locks, as well as their minds. He shares stories about emotional intelligence and the life cycle of skill practice from the beginner\'s mind to the expert\'s. You\'ll laugh at some entertaining mishaps Robert has had with lock picks!</p>\n\n\n\n<div class=\"wp-container-9 wp-block-group\"><div class=\"wp-block-group__inner-container\">\n<div class=\"wp-block-image\"><img width=\"132\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2022/03/robert-snow-1-132x150.png\" alt=\"Robert Rowley\" class=\"wp-image-95165\" />Robert Rowley</div>\n\n\n\n<p><strong>Robert Rowley</strong> is <strong>Patchstack</strong>&#8216;s Security Advocate and has been picking locks since 2004. Between 2016 and 2019 Robert ran a retreat for his information security friends and colleagues called <strong>Disconnect Camp</strong>. This is where he first combined skills like lock picking with reflection on mental health, wellness, skill development and more.</p>\n</div></div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<div class=\"wp-block-columns has-theme-palette-7-background-color has-background\">\n<div class=\"wp-block-column is-vertically-aligned-center\">\n<div id=\"StellarWP\" class=\"wp-block-image is-style-default\"><a href=\"https://poststat.us/stellarwp\"><img width=\"300\" height=\"300\" src=\"https://cdn.poststatus.com/wp-content/uploads/2022/02/stellarwp-black-1-300x300.png\" alt=\"StellarWP\" class=\"wp-image-93207\" title=\"StellarWP\" /></a></div>\n</div>\n\n\n\n<div class=\"wp-block-column\">\n<p class=\"has-small-font-size\"><strong>StellarWP</strong> is a collective of WordPress innovators empowering business owners and creators with plugins and tools to help them thrive. We build great plugins, but we don’t stop there; we continually challenge ourselves to keep innovating and improving. Our solutions include <a href=\"https://poststat.us/stellarwp\"><strong>the most trusted names in WordPress</strong></a>, with more than 2.5 Million installs. Since 2021, we’ve grown to encompass seven brands and dozens of plugins. StellarWP is part of the Liquid Web family of brands. <br /></p>\n</div>\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 13 May 2022 18:15:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"David Bisset\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"Post Status: Post Status Notes #498\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=97447\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"https://poststatus.com/post-status-notes-498/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:12021:\"<div class=\"wp-container-3 wp-block-group has-theme-palette-8-background-color has-background\"><div class=\"wp-block-group__inner-container\"><div class=\"wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">Are we up or down? What should happen when a license expires? Is the block protocol worth it? Driesnote 2022. WP Engine expands. Becoming a better writer. Best backup solutions. Define your role. Reaktiv wins a spot in Inc\'s Best Workplaces. Open Source JobHub. Our passwordless future. </p></div></div></div>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_f5fe16-0a\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<p><strong>Joost de Valk</strong>&#8216;s latest <a href=\"https://twitter.com/jdevalk/status/1524354975089967105\">WordPress market share analysis</a> has led to a lot of good questions that are hard to answer without better data and ways to assess it. Are we going up or down? <strong>David Bisset</strong> <a href=\"https://poststatus.com/does-market-share-matter/\">offered his take</a> and hosted a community conversation on the <a href=\"https://poststatus.com/the-state-of-wordpress-market-share/\">State of WordPress Market Share</a>.</p>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_8fc5e9-38\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<p><strong>Munir Kamal</strong> explains <a href=\"https://gutenberghub.com/create-scrollable-image-gallery-block/\">how to create a scrollable image gallery block</a> in the editor with an already scaffolded Gutenberg block and some basic <strong>React</strong> knowledge.</p>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_d1e0d5-c8\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<p><strong>Apple</strong>, <strong>Google</strong>, and <strong>Microsoft</strong> have taken <a href=\"https://fidoalliance.org/apple-google-and-microsoft-commit-to-expanded-support-for-fido-standard-to-accelerate-availability-of-passwordless-sign-ins/\">another step towards a possible passwordless future</a>. This applies to both apps and websites, so I\'m looking forward to logging into a WordPress site without entering a password.</p>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_c0fe17-01\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<p><strong>Aleksandar Vucenovic</strong> <a href=\"https://poststatus.slack.com/archives/C02GALGDLLA/p1651854889972039\">announced</a> in <strong>Post Status Slack</strong> <a href=\"https://woocommerce.com/products/pixel-manager-pro-for-woocommerce/\">the launch</a> of <strong>Pixel Manag</strong>er for <strong>WooCommerce</strong>, an extension that tracks store visitors with tracking pixels in the standard way but with &#8220;more functional layers that increase measurement accuracy.&#8221; </p>\n\n\n\n<p>Pixel Manager also finds and automatically fixes or gives you guidance about &#8220;problems in your shop setup that might lower or prevent accurate tracking.&#8221;</p>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_0d7648-0a\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<p><strong>Linux</strong> <strong>New Media</strong> has launched <strong><a href=\"https://opensourcejobhub.com/\">Open Source JobHub</a></strong>, a <a href=\"https://www.zdnet.com/article/a-new-job-site-just-for-open-source-jobs-opens-its-doors/\">job site just for open source jobs</a>.</p>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_574e02-81\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<p><strong>Patchstack</strong> has <a href=\"https://patchstack.com/articles/winners-of-wordpress-bug-hunt-2021/\">announced the winners</a> of their 2021 <strong>WP Bug Hunt</strong>, which resulted in &#8220;more than 1000 security reports and paid out $17,450 USD as cash&#8221; in bounties.</p>\n\n\n\n<p>In<strong> Post Status Slack</strong>, Oliver <a href=\"https://poststatus.slack.com/archives/CHNM7Q7T8/p1652276299830169\">noted</a> they\'ve <a href=\"https://patchstack.com/alliance/\">launched a new</a> <strong>Patchstack Alliance</strong> site where you can learn about &#8220;some new special bounties&#8221; and how to get into the hunt yourself! Get in touch with Patchstack to be part of the next WP Bug Hunt challenge.</p>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_ba507b-8d\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<p>Congrats to <strong>Reakitv</strong>, a <strong>WordPress VIP</strong> Partner, for becoming one of <strong>Inc</strong>&#8216;s <a href=\"https://www.inc.com/profile/reaktiv\">Best Workplaces honorees</a> for 2022.</p>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_0b5b4c-f5\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<p><strong>Neil Thanedar</strong> thinks <a href=\"https://neilthanedar.com/we-need-a-middle-class-for-startups/\">we need a &#8220;middle class&#8221; for startups</a> — those with $10M to $1B USD in annual revenue. </p>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_8abeb8-e9\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<p><strong>Eric Karkovack</strong> added to <a href=\"https://speckyboy.com/wordpress-theme-plugin-license-expires/\">the conversation about WordPress theme and plugin license expirations</a>. Eric believes there\'s a middle ground between supporting non-paying customers for free and making the user experience worse if a plugin isn\'t renewed:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>&#8220;Software developers should be able to convey the importance of license renewals. But they should also make their intentions crystal clear&#8230; Users should know a developer’s policy <em>before</em> they make a purchase.&#8221;</p></blockquote>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_bac61d-75\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<p><strong>Hugh Lashbrooke</strong> — who is <strong>Head of Community Education</strong> at <strong>Automattic</strong> — shared <a href=\"https://www.linkedin.com/feed/update/urn:li:activity:6929625424058609664/\">how he wrote his job description and invented the title for his role</a>. Hugh advises, &#8220;If you want to change your career path, figure out what that looks like for you in your context and push for it — advocate for yourself and make it happen.&#8221;</p>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_e8c5ab-de\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<p><strong>Leonardo Losoviz</strong> wraps up his investigation of the possible benefits and costs to WordPress if it adopts the <strong>Block Protocol</strong>. While he feels the attempt at a standard is a &#8220;wonderful idea,&#8221; Leonardo has come to the conclusion <a href=\"https://masterwp.com/would-wordpress-be-better-off-by-joining-the-block-protocol/\">it might not be worth it</a>.</p>\n\n\n\n<p>Check out Leonardo\'s conversation with <strong>David Bisset</strong> on <strong>Post Status Excerpt</strong> to get some background on the Block Protocol along with Leonardo\'s first thoughts about it.</p>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_7eedc0-c8\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<p>If you are looking for a backup plugin, then <a href=\"https://deliciousbrains.com/best-wordpress-backup-plugin/\">this recent product comparison</a> from <strong>Mike Davey</strong> is worth a read. </p>\n\n\n\n<p>My preference is for <a href=\"https://twitter.com/dimensionmedia/status/1524103981160714240\">server-side backups</a>, but Mike raises a good point about how we can\'t assume any backup is 100% reliable if we haven\'t tested them. The bottom line is, the more important the site, the more backup plans you should have in place.</p>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_1c4f57-34\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<p><strong>DrupalCon</strong> was held in <strong>Portland</strong> at the end of April. I\'ve always enjoyed watching <strong>Drupal</strong> founder <strong>Dries Buytaert</strong>&#8216;s &#8220;Driesnotes,&#8221; which are his keynote speeches at DrupalCons —similar to Matt\'s &#8220;<a href=\"https://www.youtube.com/watch?v=Ig676RzJbLo&list=PLpeDXSh4nHjRye9v5rA62RG2Gg6AgwAds&index=2&t=4s\">State of the Word</a>&#8221; talks. They\'re full of interesting things to learn about this sister CMS project. </p>\n\n\n\n<p>The <a href=\"https://www.youtube.com/watch?v=Ig676RzJbLo\">2022 Driesnote</a> is available on <strong>YouTube</strong> right now.</p>\n\n\n\n<p>Big Drupal news for 2022: <strong>Drupal 10</strong> is coming out later this year, and it <a href=\"https://www.drupal.org/about/core/blog/drupal-10-will-require-php-81\">will require PHP 8.1</a>.</p>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_057bb2-d9\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<p><strong>WP Engine</strong> continues to expand! They\'ve added <a href=\"https://martechseries.com/technology/wp-engine-unveils-new-omaha-office/\">a new office</a> in <strong>Omaha</strong> where <strong>Flywheel</strong> is based. Flywheel <a href=\"https://cloud.google.com/customers/flywheel\">moved onto</a> <strong>Google Cloud</strong> a few years ago around the time Google\'s <strong>Council Bluffs</strong> <a href=\"https://www.google.com/about/datacenters/locations/council-bluffs/\">datacenter</a> came online across the river in Iowa. </p>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_3adab1-6b\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<p><strong>Heinrich Hartmann</strong> has <a href=\"https://www.heinrichhartmann.com/posts/writing/\">some excellent suggestions</a> for engineers and really everyone who wants to become a better and more productive writer. Some tips include knowing your audience, making your text skimmable, and leveraging small writing tasks as exercise. </p>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_76a8c2-b0\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<p>Get <a href=\"https://poststatus.com/wordpress-podcast-and-video-picks-for-the-week-of-may-8/\">David\'s picks for the week</a> from WordPress and web tech podcasts and videos.</p>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_e17dc8-44\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"wp-container-4 wp-block-group has-theme-palette-7-background-color has-background\"><div class=\"wp-block-group__inner-container\">\n<h2 id=\"h-do-you-enjoy-our-weekly-notes\"><strong>Do you enjoy our weekly notes? </strong></h2>\n\n\n\n<p>Get them and more in Post Status\' <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a>. We gather WordPress and WooCommerce news along with significant writing, videos, and podcast episodes from the WordPress community and beyond. Don\'t miss the latest updates from the people making WordPress in our <a href=\"https://poststatus.com/make-wordpress/\">This Week at WordPress.org</a> summaries. It\'s all in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>! <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f48c.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n</div></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 13 May 2022 17:25:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"David Bisset\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"Post Status: Does Market Share Matter?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=97600\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://poststatus.com/does-market-share-matter/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6856:\"<div class=\"wp-container-7 wp-block-group\"><div class=\"wp-block-group__inner-container\">\n<p class=\"has-small-font-size\">By <a href=\"https://poststatus.com/author/david-bisset/\">David Bisset</a> and <a href=\"https://poststatus.com/author/dan-knauss/\">Dan Knauss</a> • May 13, 2022 <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f5d3.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n</div></div>\n\n\n<div class=\"has-background has-theme-palette-8-background-color wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">Is the WordPress market share beginning to shrink? How do we assess market share? What metrics matter? It\'s time we asked these questions. </p></div>\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-drop-cap\">This week brought some attention to WordPress\'s market share, at least as it gets reported by <strong>W3techs</strong>. For the first time, the WordPress market share <a href=\"https://w3techs.com/technologies/history_overview/content_management/all\">appears to have declined</a> — by 0.4% since February this year. David noticed this as soon as the first numbers were published and <a href=\"https://twitter.com/dimensionmedia/status/1518633952906461185\">tweeted about it on April 25th</a>. This week, <strong>Joost de Valk</strong> <a href=\"https://joost.blog/wordpress-market-share-shrinking/\">broke down the numbers</a> and gave his take on the causes of the decline.</p>\n\n\n\n<p>You should read the whole thing, but in Joost\'s opinion, the main cause of this multi-month trend is &#8220;out innovation&#8221; from <strong>Wix</strong> and <strong>Squarespace</strong>, even though both have had almost flat growth recently. Joost feels these centralized platforms can update customer sites with enhancements and best practices faster than WordPress can.</p>\n\n\n\n<h2 id=\"h-is-pointing-fingers-at-full-site-editing-fair\">Is Pointing Fingers at Full Site Editing Fair?</h2>\n\n\n\n<p>Unsurprisingly, Full Site Editing (as distinct from Gutenberg / the block editor) has come in for a lot of renewed criticism, with Joost leading the pack:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>&#8220;The Full Site Editing project is simply taking far too long. That’s causing the rest of the platform to lag behind current web trends.&#8221;</p></blockquote>\n\n\n\n<p><a href=\"https://twitter.com/jdevalk/status/1524354975089967105\">Others have suggested one or more primary causes</a>: the whole Gutenberg project, COVID, loss of in-person events, emphasis on PHP, emphasis on React/JavaScript, a decline in volunteering, and not enough core contributors. Sure, these are all possible influences in any downward trend. But it\'s an avalanche of anecdotes, speculation, axes to grind — and not a few potentially useful insights.</p>\n\n\n\n<p>A popular and reasonable opinion is that competing publishing platforms can handle some (typically simpler) use cases faster or easier than WordPress. If you don\'t care about the tool you use (or owning your own content, the GPL, open source, etc.) then WordPress isn\'t the first choice quite as clearly as it used to be for some use cases, like blogging or simple websites.</p>\n\n\n\n<h2>In Context, an Overreaction?</h2>\n\n\n\n<p>The global economic context right now is one of alarm over recession and &#8220;stagflation&#8221; indicators — flat or negative growth plus inflation. Many other CMS platforms are trending down or flattening in growth too. Under these conditions, a tiny 0.4% decline shouldn\'t ring any alarm bells.</p>\n\n\n\n<p>But as you can imagine (<a href=\"https://twitter.com/dimensionmedia/status/1524405251733921793\">and as David predicted</a>), many people are quick to offer dramatic opinions, but for others, it\'s an opportunity for the WordPress community to do some self-examination. </p>\n\n\n\n<h2>Is WordPress the iPod or the iPhone?</h2>\n\n\n\n<p><strong>Joe Casabona</strong> compares WordPress to <a href=\"https://wpreview.io/wordpress-discontinued-ipod/\">the discontinued iPod</a> — an innovative breakthrough in its day that eventually became obsolete. </p>\n\n\n\n<p>We believe WordPress <a href=\"https://twitter.com/dimensionmedia/status/1435675442200162313\">might be closer to the iPhone</a>, however. Growth stops at some point for a dominant player that is still winning. The WordPress community should stop obsessing over growth and using it as our only measure of health and success. </p>\n\n\n\n<p><strong>Brian Coords</strong> takes a similar view and suggests <a href=\"https://masterwp.com/wordpress-needs-to-start-thinking-like-a-platform-again/\">WordPress should start thinking like a platform again</a>.</p>\n\n\n\n<h2>What do we know anyway?</h2>\n\n\n\n<p>That\'s not to say a reported 0.4% drop over 2-3 months is clearly a decline at all. Will it prove a lasting trend? </p>\n\n\n\n<p>As <strong>Alex Denning</strong> <a href=\"https://getellipsis.com/blog/wordpress-shrinking-maybe/\">observes</a>, year over year <strong>W3Techs</strong> shows the overall WordPress market share is <em>up</em> 1.7%. Moreover, W3techs has been our only measure of CMS market share. Their primary data comes from <strong>Alexa</strong> rankings, <a href=\"https://www.coywolf.news/seo/amazon-alexa-rank-end-of-life/\">a defunct service</a> as of this month. Alex lays his finger on our biggest challenge:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p><em>&#8220;We had no idea why the market share was growing, and we accordingly have no idea why it’s shrinking.&#8221;</em></p></blockquote>\n\n\n\n<h2>We need to know! How can we find out?</h2>\n\n\n\n<p>There are many other things alongside market share that we ought to be researching, like indicators of the project and the community\'s health — the whole ecosystem and specific parts of it.</p>\n\n\n\n<p><strong>Jordi Cabot</strong> asked earlier this year, <a href=\"https://poststatus.com/can-five-for-the-future-fund-wordpress-research/\">What if Five for the Future funded WordPress research</a>? He also put out this call for proposals: <a href=\"https://poststatus.com/can-five-for-the-future-fund-wordpress-research#h-call-for-proposals-what-are-the-most-important-questions-to-ask\">What are the most important questions to ask</a>? </p>\n\n\n\n<h2>Tired of wandering in the dark?</h2>\n\n\n\n<p>We\'d love to hear your ideas about the questions we should be asking, the metrics we need, and how we can get them. Send them to us or bring them into <strong>Post Status Slack.</strong></p>\n\n\n\n<p class=\"has-theme-palette-7-background-color has-background\"><strong>Post Status</strong> hosted and recorded a community conversation about the <a href=\"https://poststatus.com/the-state-of-wordpress-market-share/\">State of the WordPress Market Share</a> as a <strong>Comments</strong> episode on <strong>Twitter Spaces</strong> on May 13th with <strong>Joost</strong>, <strong>Alex</strong>, and <strong>Jessica Frick</strong> as invited guests.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 13 May 2022 17:06:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"David Bisset\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"Do The Woo Community: WooBits: Dropping My .02% About WordPress Marketshare\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=71652\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://dothewoo.io/woobits-dropping-my-02-about-wordpress-marketshare/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:430:\"<p>In light of the recent article and discussion of the drop in the WordPress marketshare, well, I felt it my duty to weigh in, ever so small.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://dothewoo.io/woobits-dropping-my-02-about-wordpress-marketshare/\">WooBits: Dropping My .02% About WordPress Marketshare</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 13 May 2022 09:54:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"WPTavern: A Farewell from Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=134249\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wptavern.com/a-farewell-from-justin-tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8067:\"<p class=\"has-drop-cap\">Around three years ago, I was at a crossroads. I had spent nearly my entire adult life and most of my professional career within the WordPress space. However, the responsibilities of being a solo theme/plugin shop owner were like a boulder upon my shoulders that I could no longer hold up. After 11 years in the business, I was ready to throw in the towel.</p>\n\n\n\n<p>My work was my life, and my life was my work. I was not sure if I even knew how to do anything else. I briefly considered returning to South Korea for another year-long stint teaching English as a second language. But, I had already spent years rebuilding my life and relationships back in my home state of Alabama. <em>Plus, I was not prepared to say goodbye to my cats for that long.</em></p>\n\n\n\n<p>The only other practical experience I had was gardening and farming work. I have spent many summers working watermelon fields and hauling hay under the heat of the Alabama sun, and I have piddled around in my own garden over the years. However, I was not in a financially stable position to start my own farm. It was too risky a proposition at that stage in my life.</p>\n\n\n\n<p>I was also not quite ready to let go of WordPress. There was more that I wanted to accomplish, but I still faced the reality of needing to move on from the place I was at or find some way to get more joy out of the work I was doing.</p>\n\n\n\n<p>It was not until a few months later that the writing position for WP Tavern opened. I was hesitant about it at first. I figured I had the credentials and experience to do the job, but daily writing, editing, and publishing would be unlike anything I had taken on before. Sarah Gooding, who has been the best colleague anyone could ask for, convinced me that I should pursue this job.</p>\n\n\n\n<p>It turned out to be one of the best things to ever happen to me.</p>\n\n\n\n<p>As I got into the swing of things and began to find my voice, I was once again genuinely happy to be involved with the WordPress project. Since I have been here, I have rekindled the flame I once had with our beloved platform.</p>\n\n\n\n<p>I have made wonderful friends along the way. It has been a blessing to have the Tavern and its readers in my life.</p>\n\n\n\n<p>Today, I am ready for a new challenge. I am stepping down from my role as a writer at WP Tavern.</p>\n\n\n\n<p>No, I am not ready to start that farm just yet. Y&#8217;all cannot get rid of me that easily. I will stick around the WordPress community for a while, but today is not about my new role. It is a celebration of the Tavern.</p>\n\n\n\n<p>I have published 647 stories and written 857 comments as of this post. I can only hope that, somewhere along the way, I have made an impact in some of your lives or work.</p>\n\n\n\n<p>As I leave, I have one request: be kind to one another.</p>\n\n\n\n<p>I believe we all want WordPress to be successful. We might have different opinions about how to make that happen. Sometimes, those ideas clash, but if we all treat one another with respect and have constructive discussions, things will work themselves out.</p>\n\n\n\n<p>To our readers, thank you for going on this journey with me.</p>\n\n\n\n<p>There are two remaining questions I want to answer before closing this chapter in my part of that journey. Feel free to continue reading. Otherwise, thank you for making it this far.</p>\n\n\n\n<h2>Writing About WordPress</h2>\n\n\n\n<img /><a href=\"https://wordpress.org/photos/photo/632620a981/\">Photo</a> by <a href=\"https://wordpress.org/photos/author/turtlepod/\">David Chandra Purnama</a>.\n\n\n\n<p>Someone messaged me a week or so into my employment at WP Tavern about writing for WordPress. They wanted to know how they could become a writer on WordPress-related topics and one day work in the field. At the time, I did not have a great answer to the question. Maybe I still do not, but I will take a crack at it.</p>\n\n\n\n<p>We might as well start with the advice of one of the most prolific writers in modern history, Stephen King. At the end of <em>The Stand</em>, one of my favorites from him, he answered this same question, and it has always resonated with me.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>When asked, &#8220;How do you write?&#8221; I invariably answer, &#8220;One word at a time,&#8221; and the answer is invariably dismissed. But that is all it is. It sounds too simple to be true, but consider the Great Wall of China, if you will: one stone at a time, man. That&#8217;s all. One stone at a time. But I&#8217;ve read you can see that mother&#8212; from space without a telescope.</p></blockquote>\n\n\n\n<p>I think he may be wrong about seeing the Great Wall from space (<em>Where&#8217;s a fact-checker when you need one?</em>), but it is still generally sound advice.</p>\n\n\n\n<p>I have been writing about WordPress for 17 years. Sometimes on my personal blog. At other times, I have taken one-off jobs. And, of course, I have written 100s of posts here at the Tavern. What has always helped me is sticking to topics I am passionate about. There are days when the job can be a grind (especially during slow news weeks), so you must love what you are doing to sustain any sort of career in writing.</p>\n\n\n\n<p>I have a B.A. in English with a secondary concentration in journalism. However, my education merely provided a solid foundation. It is not a prerequisite for doing the job.</p>\n\n\n\n<p>No one can teach you how to build those habits necessary for a sustainable career. They are too personal, and you can only figure out what works by practicing.</p>\n\n\n\n<p>No one can give you your voice. That is a discovery that only you can make, and writing is a discovery in and of itself.</p>\n\n\n\n<p>My advice to would-be writers is to give <a href=\"https://nanowrimo.org/\">National Novel Writing Month</a> a shot this November. It is a challenge to write 50,000 words in 30 days. I have won twice and hope to do it again this year. I guarantee that you will figure out everything you need to know about yourself as a writer if you push yourself through the challenge. It is OK to fail. Just dust yourself off and try again if you have your heart set on it.</p>\n\n\n\n<p>To the person who asked this question: I am sorry for not remembering your name. It has been over two years, and my memory is not what it once was. But, I hope you are reading now.</p>\n\n\n\n<h2>Spilling the Beans</h2>\n\n\n\n<img />Coffee Beans. <a href=\"https://wordpress.org/photos/photo/12961feeb9/\">Photo</a> by <a href=\"https://wordpress.org/photos/author/cagrimmett/\">Chuck Grimmett</a>\n\n\n\n<p>There is a question I get asked. <em>A lot.</em> Some of you probably already know what it is and have, perhaps, asked it or some variation of it yourself.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Does Matt dictate or control the content that we cover?</p></blockquote>\n\n\n\n<p>Since it is my last day on the job, I might as well let readers peek behind the curtain. And the answer is no.</p>\n\n\n\n<p><em>Sorry to let down our conspiracy-theory-loving readers, but the truth is just not that juicy.</em></p>\n\n\n\n<p>I always joke that I have only talked with &#8220;the boss&#8221; a handful of times while working here. That is pretty close to the truth (I have not actually kept count).</p>\n\n\n\n<p>From the day I arrived until today, I have had complete independence to thrive or fail by the result of my work. It felt like our small team had been left on an island to fend for ourselves at times. We must go through the same channels as other publications for information and have never been given special treatment.</p>\n\n\n\n<p>This level of autonomy is vital for journalistic integrity.</p>\n\n\n\n<p>The WordPress community will always need a publication where its writers have the independence to do their work without conflicts of interest. The Tavern has always been that place, and I do not expect it to change going forward.</p>\n\n\n\n<p>I appreciate that our readers have trusted our team to perform this job. It is a responsibility that has not been taken lightly. I am proud to have contributed in at least in some small way.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 12 May 2022 22:47:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"Post Status: Post Status Excerpt (No. 58) — Understanding Your Outsourcing Needs\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=97290\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://poststatus.com/understanding-your-outsourcing-needs/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4506:\"<blockquote class=\"wp-block-quote\"><p>“Matching is key. &#8230;the right skills, the right availability, and the right temperament to join an agency\'s team to help them meet their goals.”</p><cite>— Morayo Orija</cite></blockquote>\n\n\n\n<p class=\"has-drop-cap\">Have you ever considered outsourcing some aspect of your business? Have you hired a virtual assistant — for yourself or for your agency? David chats with <strong>Michael Short</strong> and <strong>Morayo Orija</strong> from <strong>GoWP</strong> about the value of outsourcing certain business operations. Learn what to look for, and why you might need to &#8220;let it go&#8221; and trust other people as you outsource parts of your business you can\'t handle.</p>\n\n\n\n<p><strong>Why This Matters:</strong> Most businesses and freelancers can\'t do it all — or they shouldn\'t. Whether it\'s accounting, content creation, or development — we sometimes have to acknowledge our limitations and weaknesses. Why not turn to trusted sources in the industry and WordPress community for help? If you\'ve thought about outsourcing as a possible solution for your business, you\'ll benefit from listening to Michael and Morayo.</p>\n\n\n\n\n\n\n\n<p class=\"has-background\">Every week <strong><a href=\"https://poststatus.com/podcast/the-excerpt/\">Post Status Excerpt</a></strong> will bring you important news and insights from guests working in the WordPress space. <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f399.png\" alt=\"?\" class=\"wp-smiley\" /><br /><br />You can listen to <a href=\"https://poststatus.com/podcast/the-excerpt/\">past episodes</a> of <strong>The Excerpt</strong>, <a href=\"https://poststatus.com/category/post-status-podcasts/\">browse all our podcasts</a>, and don’t forget to subscribe on <a href=\"https://open.spotify.com/show/1m3xwXbe0MG5BzFVPtB0A7\">Spotify</a>, Amazon Music, <a href=\"https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5zaW1wbGVjYXN0LmNvbS8ySkU5c2M4UA\">Google Podcasts</a>, <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\">iTunes</a>, <a href=\"https://castro.fm/podcast/c53552c6-1ee0-4fc4-9de4-08ed6bf1ee4d\">Castro</a>, <a href=\"https://www.youtube.com/c/PostStatus\">YouTube</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\">Stitcher</a>, <a href=\"https://player.fm/series/wordpress-post-status-podcasts\">Player.fm</a>, <a href=\"https://pca.st/05rR\">Pocket Casts</a>, <a href=\"https://wordpress-post-status-draft-podcast.simplecast.com/\">Simplecast</a>, or by <a href=\"https://feeds.simplecast.com/2JE9sc8P\">RSS</a>. <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f3a7.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n\n\n\n<h3 id=\"h-mentioned-in-the-show\"><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f517.png\" alt=\"?\" class=\"wp-smiley\" /> Mentioned in the show:</h3>\n\n\n\n<ul><li><a href=\"https://michaelshort.pro/\"><strong>Michael Short</strong></a></li><li><a href=\"https://www.linkedin.com/in/morija\"><strong>Morayo Orija</strong></a></li><li><a href=\"https://givewp.com/\"><strong>GiveWP</strong></a></li><li><a href=\"https://twitter.com/dimensionmedia\" target=\"_blank\" rel=\"noreferrer noopener\"></a><a href=\"https://twitter.com/dimensionmedia\" target=\"_blank\" rel=\"noreferrer noopener\">David Bisset</a> (Twitter)</li><li><a href=\"https://twitter.com/dimensionmedia\" target=\"_blank\" rel=\"noreferrer noopener\"></a><a href=\"https://twitter.com/post_status\" target=\"_blank\" rel=\"noreferrer noopener\">Post Status</a> (Twitter)</li></ul>\n\n\n\n<div class=\"wp-block-columns has-theme-palette-8-background-color has-background\" id=\"WP-Engine\">\n<div class=\"wp-block-column\">\n<h3 id=\"sponsor-bluehost\"><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f64f.png\" alt=\"?\" class=\"wp-smiley\" /> Sponsor: <a href=\"https://poststat.us/wpengine/\">WP Engine</a></h3>\n\n\n\n<p><strong>WP Engine</strong> is <a href=\"https://poststat.us/wpengine/\">the WordPress Digital Experience Platform that drives your business forward faster</a>. WP Engine makes WordPress easier and faster. It does the heavy lifting so you can focus on your core business and win online.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center\">\n<div id=\"WP-Engine\" class=\"wp-block-image\"><a href=\"https://poststat.us/wpengine/\"><img width=\"112\" height=\"151\" src=\"https://cdn.poststatus.com/wp-content/uploads/2022/01/WPE-LOGO-S-Default.svg\" alt=\"WP Engine\" class=\"wp-image-95924\" title=\"WP Engine\" /></a></div>\n</div>\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 12 May 2022 20:00:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"David Bisset\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"Do The Woo Community: Education, the LMS Ecosystem and WooCommerce with Ronnie Burt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=71635\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://dothewoo.io/education-the-lms-ecosystem-and-woocommerce/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:418:\"<p>Ronnie Burt from Sensei LMS shares insights and thoughts from his years of experience in education, WordPress, and WooCommerce</p>\n<p>The post <a rel=\"nofollow\" href=\"https://dothewoo.io/education-the-lms-ecosystem-and-woocommerce/\">Education, the LMS Ecosystem and WooCommerce with Ronnie Burt</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 12 May 2022 14:00:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:150:\"WPTavern: WordPress Community Attributes Declining Market Share to Performance Issues, Increased Complexity, and the Lagging Full-Site Editing Project\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=134243\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:159:\"https://wptavern.com/wordpress-community-attributes-declining-market-share-to-performance-issues-increased-complexity-and-the-lagging-full-site-editing-project\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:11917:\"<p>For the first time in WordPress&#8217; nearly 19-year history, the software&#8217;s usage stats are showing signs of declining market share. Its remarkable ascension to 43.3% market share took a turn in March 2022 and usage has slowly declined since then, according to a new WordPress market share report from Joost de Valk that references <a href=\"https://w3techs.com/technologies/history_overview/content_management/all\">stats from W3Techs</a>. </p>\n\n\n\n<img />CMS usage stats since January 2011 &#8211; source: W3Techs\n\n\n\n<p>In a post titled &#8220;<a href=\"https://joost.blog/wordpress-market-share-shrinking/\">WordPress&#8217; Market Share Is Shrinking,</a>&#8221; de Valk highlighted the numbers from the last few months, which now conclusively demonstrate a decline:</p>\n\n\n\n<img />source: <a href=\"https://joost.blog/wordpress-market-share-shrinking/\">Joost de Valk</a>\n\n\n\n<p>de Valk&#8217;s analysis elaborates on how WordPress&#8217; market share, and that of its open source contemporaries, is being eroded by competitors like Wix and Squarespace. He attributes this change to two major factors: WordPress&#8217; lack of focus on performance, and the complexity of the unfinished full-site editing project:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>If you look at&nbsp;<a href=\"http://cwvtech.report/\">cwvtech.report</a>&nbsp;you’ll see that in the last year, sites on Wix and Squarespace on average have improved their site speed more than WordPress sites. WordPress has a performance team now, and it has made some progress. But the reality is that it hasn’t really made big strides yet, and in my opinion, really should. Project leadership still seems unwilling to focus on performance though, which has to do with the next point:</p><p>WordPress’ full site editing project is not done yet. Anecdotally, more and more people are having a hard time deciding how to build their site on WordPress. Wix and Squarespace are simply way simpler tools to build a site. As they improve their SEO tooling, there’s less and less reason to switch over to WordPress.</p></blockquote>\n\n\n\n<p>The post inspired rampant speculation in the community, and the discussion has splintered off into different pockets across the web &#8211; various <a href=\"https://twitter.com/jdevalk/status/1524354975089967105\">Twitter threads</a>, Post Status Slack, and a <a href=\"https://www.facebook.com/groups/advancedwp/posts/5335192453209592/\">post in the Advanced WP</a> group on Facebook that has already received more than 100 comments. </p>\n\n\n\n<p>It&#8217;s not realistic to expect any CMS to make gains every month, even if it has grown steadily in the past. WordPress is still far and away the market leader, but many see the new decline in market share as a symptom of a deeper problem.  No one can definitively say why WordPress is losing market share but the community has a few prevailing theories. </p>\n\n\n\n<p>Performance is one of the contributing factors that is easier to measure than many others. According to <a href=\"https://t.co/UXrPUetsXH\">data from HTTP Archive</a>, WordPress trails its closest competitors when it comes to percentage of sites with good Core Web Vitals scores.</p>\n\n\n\n<img />\n\n\n\n<p>&#8220;I&#8217;m not excited to see the percentage drop, but it confirms even more that something needs to change,&#8221; Google-sponsored contributor Felix Arntz <a href=\"https://www.facebook.com/groups/advancedwp/posts/5335192453209592/?comment_id=5335463033182534&__cft__[0]=AZXHiAZGjTdaMvv69aWrE4uqcclxVqhyYOPyNLpAN6rFHg9aXVJM5D_cSXcFPU5STYxj6mrkzp7e909jEvJgUKrPSAoI1AlPn2app0822R8UjgvsZpLbxfepE6ci8tTiWC62JubpIYAVNcgp3lYcNVzZ&__tn__=R]-R\">said</a>. &#8220;It&#8217;s also worth adding that the growth rate of other CMSs like Wix or Shopify has already long surpassed WordPress even before this. My session at WordCamp Europe is precisely going to focus on this topic.</p>\n\n\n\n<p>&#8220;All this is why we started the WordPress performance team a couple months back, we need to make more solid performance decisions out of the box for WordPress. Let&#8217;s work together so that we can turn this around over the next few years.&#8221;</p>\n\n\n\n<p>Many saw the news of WordPress&#8217; declining market share as an opportunity to weigh in on their pet grievances about WordPress and the Gutenberg project in general, but there are some legitimate concerns about the condition of the software when it&#8217;s rolled out to millions of users.</p>\n\n\n\n<p>&#8220;Full site editing and its deployment into core before it has really been ready isn’t doing us any favors for newcomers to WordPress,&#8221; WordPress developer Daniel Schutzsmith <a href=\"https://twitter.com/schutzsmith/status/1524420452021682181\">said</a>. &#8220;It throws them off and scares them because it feels broken in many aspects.&#8221;</p>\n\n\n\n<p>WordPress&#8217; increasing complexity is another strong factor many participants cited as a possible influence, particularly those who build websites for clients. The software has become more sophisticated, enabling users to do more things than ever before, but it&#8217;s not getting easier to use.  </p>\n\n\n\n<p>&#8220;I don’t do much WP dev anymore, but after needing multiple articles and a YouTube tutorial for me to understand the new Navigation block, I knew WP was in serious trouble,&#8221; developer Alexis Rae <a href=\"https://twitter.com/TransCinderella/status/1524363595903025152?ref_src=twsrc%5Etfw%7Ctwcamp%5Etweetembed%7Ctwterm%5E1524363595903025152%7Ctwgr%5E%7Ctwcon%5Es1_&ref_url=https%3A%2F%2Fwptavern.com%2Fwp-admin%2Fpost.php%3Fpost%3D134243action%3Dedit\">said</a>. &#8220;That 5.9 pushed out full site editing as the only option (that I can tell) while it’s a beta is insane.&#8221;</p>\n\n\n\n<p>Multiple participants in the discussions on Facebook and Twitter said they have recently been building some of their clients&#8217; sites with other technologies to make it easier for their clients to manage their websites.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">&#8230; for the last few years, this hasn\'t been our experience and eyes are wondering towards other solutions. We\'ve already delivered sites on Webflow, and even a couple on Squarespace. That would have been unthinkable two years ago.</p>&mdash; Nick Wilmot (@nickwilmot) <a href=\"https://twitter.com/nickwilmot/status/1524416730805776384?ref_src=twsrc%5Etfw\">May 11, 2022</a></blockquote>\n</div>\n\n\n\n<p>&#8220;From working with clients I notice that the quality of the admin interface is really becoming an issue that turns people off from WordPress,&#8221; Florian Fermin <a href=\"https://www.facebook.com/groups/168889943173228/user/1498532059/?__cft__[0]=AZXHiAZGjTdaMvv69aWrE4uqcclxVqhyYOPyNLpAN6rFHg9aXVJM5D_cSXcFPU5STYxj6mrkzp7e909jEvJgUKrPSAoI1AlPn2app0822R8UjgvsZpLbxfepE6ci8tTiWC62JubpIYAVNcgp3lYcNVzZ&__tn__=R]-R\">said</a>. &#8220;On the lower end, this drives people to go to Squarespace and Wix instead. On the high end, I have now migrated multiple sites away from WordPress to CraftCMS and clients have been delighted with the clean interface it provides, and they&#8217;re confident to make small changes themselves, allowing me to put my energy in more exciting stuff.&#8221;</p>\n\n\n\n<p>WordPress gained popularity early on by being the best free software available for blogging, and then later for its flexibility as a CMS. The transition into a nocode style site builder has been difficult with extensive periods of growing pains. As most of the energy and resources put into core seem to go towards Gutenberg, other older aspects of the software have gone neglected. </p>\n\n\n\n<p>&#8220;WordPress has really developed into jack of all trades and master of none,&#8221; Fermin said. &#8220;In my experience, this has meant in the last years that when I have to recommend a CMS for the use case of a client, more and more often the answer has been something else and not WordPress.&#8221;</p>\n\n\n\n<p>WordPress used to be one of the strongest solutions on the market for building small, simple sites but competitors are making it faster and easier to launch these kinds of sites. Meanwhile, WordPress themes are going through a rocky transition towards better accommodating full-site editing features. </p>\n\n\n\n<p>&#8220;For my clients (mostly government), FSE is not the way to go,&#8221; WordPress developer Roy Tanck <a href=\"https://twitter.com/roytanck/status/1524394782176514049?ref_src=twsrc%5Etfw%7Ctwcamp%5Etweetembed%7Ctwterm%5E1524394782176514049%7Ctwgr%5E%7Ctwcon%5Es1_&ref_url=https%3A%2F%2Fwptavern.com%2Fwp-admin%2Fpost.php%3Fpost%3D134243action%3Dedit\">said</a>. &#8220;I spend a lot of my time disabling new features now. If WP continues to become a &#8216;site builder,&#8217; traditional CMS clients will likely start to look elsewhere.&#8221;</p>\n\n\n\n<p>In his conclusion, Joost de Valk contends that the full-site editing project is taking far too long. </p>\n\n\n\n<p>&#8220;That’s causing the rest of the platform to lag behind current web trends,&#8221; he said. &#8220;Without a drastic change in this approach I think WordPress will continue to lose market share for the next few years.&#8221;</p>\n\n\n\n<p>Although some may agree that the project is taking a long time to reach a polished state, much of the feedback on social media indicates that developers do not find FSE user friendly enough for their clients. </p>\n\n\n\n<p>&#8220;WordPress is just too complicated for the majority to use effectively,&#8221; development agency owner Jon Brown <a href=\"https://www.facebook.com/groups/advancedwp/posts/5335192453209592/?comment_id=5335256633203174&__cft__[0]=AZXHiAZGjTdaMvv69aWrE4uqcclxVqhyYOPyNLpAN6rFHg9aXVJM5D_cSXcFPU5STYxj6mrkzp7e909jEvJgUKrPSAoI1AlPn2app0822R8UjgvsZpLbxfepE6ci8tTiWC62JubpIYAVNcgp3lYcNVzZ&__tn__=R]-R\">said</a>.</p>\n\n\n\n<p>&#8220;WordPress ought to be way more opinionated on accessibility and performance such that users should not even have to think about them. The problem with the current WP philosophy it is &#8216;let’s do as little as possible to leave options for the user or make the user rely on plugins&#8217;… No! Stop that. Do more by default and then give the user the option to override that if/when necessary.&#8221;</p>\n\n\n\n<p>Brown said this applies to core WordPress but is most evident in WooCommerce, where, after ten years, &#8220;you still need 25 add-ons just to get a basic store up and running.&#8221;</p>\n\n\n\n<p>&#8220;This is why Shopify is devouring e-commerce market share,&#8221; he said.</p>\n\n\n\n<p>&#8220;And simple personal sites, way easier to setup a five-page site on Squarespace or Wix for laypeople than it is to navigate WordPress.</p>\n\n\n\n<p>&#8220;How to regain market share? Simplify.&#8221;</p>\n\n\n\n<p>Is WordPress losing touch with every day users? After two years of drastically reduced WordCamps and meetups, this is a genuine possibility. Many months before WordPress&#8217; market share growth started leveling off, the strangely feverish push to return to in-person events during a pandemic seemed to betray an insecurity about what might happen to the community if required to continue on in isolation. WordPress usage numbers could be impacted by missing out on some of the grassroots growth and momentum that in-person events often generate. </p>\n\n\n\n<p>WordPress&#8217; relationship with the common user seems strained at the moment. It is no longer considered one of the easiest ways to get a website off the ground. Those who are eager to see WordPress succeed and grow can likely agree at almost any point in time that WordPress is not yet easy enough to use. A veritable army of Gutenberg contributors are working day and night to make full-site editing possible, but the project cannot afford to shelve usability concerns for too much longer, or it risks becoming software that is only used by an elite, knowledgeable few.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 12 May 2022 04:57:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:106:\"WPTavern: Gutenberg 13.2 Adds Persistent User Preferences and a Visualizer for Margin and Padding Controls\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=134247\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:117:\"https://wptavern.com/gutenberg-13-2-adds-persistent-user-preferences-and-a-visualizer-for-margin-and-padding-controls\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4891:\"<p>Gutenberg 13.2 was released earlier today. While much of the developer community is gearing up for the WordPress 6.0 release in two weeks, work continues steadily on the plugin, driving future updates. The latest release is not as hefty on enhancements as previous updates but includes around four dozen bug fixes.</p>\n\n\n\n<p>Despite a heavy focus on squashing bugs, there are several welcome improvements in the plugin update. Persistent user preferences will make for fewer surprises when opening the editor. New visual updates for block spacing and the Post Comments Form block make it easier to design layouts.</p>\n\n\n\n<p>Developers should look at the early work on a <a href=\"https://github.com/WordPress/gutenberg/pull/40547\">new <code>settings</code> hook</a>. This represents one step toward creating the <a href=\"https://github.com/WordPress/gutenberg/issues/40318\">concept of &#8220;sections&#8221;</a> that can house settings and styles for block instances and descendants. Patterns are a prime example of the necessity of sections. Matias Ventura <a href=\"https://github.com/WordPress/gutenberg/issues/39281\">covered the various uses</a> in a separate open ticket.</p>\n\n\n\n<p>The latest release also <a href=\"https://github.com/WordPress/gutenberg/pull/40652\">removes spotlight mode</a> for template parts, and I say, <em>good riddance</em>. The editor already has such a mode for all blocks, and users who prefer it can enable it.</p>\n\n\n\n<h2>Persistent Editor Preferences</h2>\n\n\n\n<img />Welcome to the editor popup.\n\n\n\n<p>Have you ever visited the WordPress editor and noticed the &#8220;welcome&#8221; popup, despite dismissing it ages ago? Or, logged in with a new browser only to reconfigure settings, such as enabling top toolbar support and turning off fullscreen mode? <em>Annoying, right?</em></p>\n\n\n\n<p>This has been a <a href=\"https://github.com/WordPress/gutenberg/issues/15105\">long-standing issue</a> caused by WordPress storing user preferences in the browser. In Gutenberg 13.2, these preferences are now <a href=\"https://github.com/WordPress/gutenberg/pull/39795\">saved as user metadata</a> in the database and should no longer pose an issue.</p>\n\n\n\n<p>Sarah Gooding took a deeper dive into this problem and solution in an <a href=\"https://wptavern.com/coming-in-gutenberg-13-1-users-editor-preferences-will-be-stored-in-the-database-improving-persistence-across-sessions\">earlier post on the Tavern</a>.</p>\n\n\n\n<h2>Padding and Margin Visualizers</h2>\n\n\n\n<img />Adding margin to the Group block.\n\n\n\n<p>Landing in the pretty-neat-and-nice-to-have category is a <a href=\"https://github.com/WordPress/gutenberg/pull/40505\">new &#8220;visualizer&#8221; feature</a> for block margin and padding. Essentially, it displays a colored box, representing the space when one of the two options is adjusted. It quickly fades out and returns the canvas to its default look.</p>\n\n\n\n<p>I am a fan of this change. It draws the eyes back to the canvas and allows users to visualize how the block spacing is applied.</p>\n\n\n\n<h2>Comments Form in the Editor</h2>\n\n\n\n<img />Comments Form Block in the site editor.\n\n\n\n<p>The Post Comments Form block was simply a placeholder in the editor in past releases. This did not allow end-users to see how it would look on the front end of their sites.</p>\n\n\n\n<p>Gutenberg 13.2 updates this to show something <a href=\"https://github.com/WordPress/gutenberg/pull/40368\">closer to what it will look like </a>on the front end, at least for logged-in users. This also lets the user see how color and typography customizations will be displayed.</p>\n\n\n\n<p>This is a two-part change. The Comments Query Loop block now <a href=\"https://github.com/WordPress/gutenberg/pull/40256\">outputs the form within its default template</a>. This way, users and creators will not need to build out each part of the overall comments area.</p>\n\n\n\n<p>There is still much work to do for the Post Comments Form block in the long term. It needs a broader selection of design tools for starters. However, it could also use a revamp that provides fine-grain control over the various elements shown for logged-in and logged-out users. That may even mean splitting the form into multiple blocks. For now, the additional visualization will have to suffice.</p>\n\n\n\n<h2>Margin Support for Separators</h2>\n\n\n\n<img />Adding top and bottom margin to a Separator block.\n\n\n\n<p>The Separator block now <a href=\"https://github.com/WordPress/gutenberg/pull/40551\">supports top and bottom margins</a>. Users can adjust it from the spacing tools in the sidebar.</p>\n\n\n\n<p>It is a small change but a welcome one. Users could previously increase the space between a Separator and sibling block through other means, such as setting the margin on the sibling or using a Spacer. However, those were often unintuitive solutions. And decreasing the space sometimes seemed an impossible task.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 12 May 2022 04:30:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"Post Status: Getting to ‘Yes’ on Plugin “License Hell”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=97406\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://poststatus.com/getting-to-yes-on-plugin-license-hell/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7620:\"<div class=\"has-background has-theme-palette-8-background-color wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">Is there a win-win solution for plugin owners fighting churn and their professional WordPress customers, like agencies and freelancers? </p></div>\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-drop-cap\">I appreciate&nbsp;<a href=\"https://poststatus.com/wordpress-plugin-license-renewals-and-the-challenge-of-churn/\" target=\"_blank\" rel=\"noreferrer noopener\">Rob Howard\'s response</a>&nbsp;to&nbsp;<a href=\"https://twitter.com/post_status/status/1518994407864684545\" target=\"_blank\" rel=\"noreferrer noopener\">the insightful discussion</a>&nbsp;that emerged on Twitter over MemberPress\'s new subscription renewal interface in the WordPress dashboard. I learned a lot, and I was reminded this controversy goes back a long way. In 2015 we wrote about unhappy customer reactions when&nbsp;<a href=\"https://poststatus.com/notes/jetbrains-refines-new-phpstorm-subscriptions/\" target=\"_blank\" rel=\"noreferrer noopener\">JetBrains adopted an Adobe CS payment model for PHPstorm</a>. Beyond the WordPress bubble, this sort of thing is old news.</p>\n\n\n\n<blockquote><p>Even if they hand off this responsibility to the site owner or cover it with ongoing maintenance and support services, managing license keys&nbsp;will still be hell for someone.</p></blockquote>\n\n\n\n<h2 id=\"h-maybe-there-s-a-win-here-for-everyone\">Maybe there\'s a win here for everyone</h2>\n\n\n\n<p>There are separate questions about design and business ethics. Is completely locking out users when there\'s not a valid support key out of step with a community ethic, i.e. &#8220;The WordPress Way?&#8221; That\'s a big and important topic, but there\'s some low-hanging fruit in the far less contentious problems Rob helpfully focused on. Maybe there is a potential win-win solution. His ideas might satisfy the two most legitimately frustrated (but seemingly opposed) perspectives in this controversy:</p>\n\n\n\n<ol><li>Plugin owners fighting subscriber churn so they can sustain their businesses.</li><li>Their customers and colleagues in the WordPress ecosystem, especially WordPress agencies and freelancers. They\'re also trying to run their businesses and don\'t want the extra work and potential embarrassments license management can create.</li></ol>\n\n\n\n<p>As Rob points out, aggressive upsells and lockouts are aimed at the mass market of common WordPress users. They\'re for people who don\'t understand what they\'ve installed or why they might pay for it. The target is not highly WordPress-literate people — especially those who are building sites professionally.</p>\n\n\n\n<p>Unfortunately, we all get the same annoyances in our WordPress dashboards anyhow.</p>\n\n\n\n<h2 id=\"h-small-agencies-and-site-builders-are-your-friends\">Small agencies and site builders are your friends</h2>\n\n\n\n<p>Site builders, small web dev teams, and WordPress agencies don\'t want their clients confused or hassled with upsells. Worse, they don\'t want a license to expire and break functionality on a client\'s site. Even if they hand off this responsibility to the site owner or cover it with ongoing maintenance and support services — something&nbsp;<a href=\"https://poststatus.com/notes/you-might-not-want-to-use-your-developer-licenses-for-your-clients-plugins/\" target=\"_blank\" rel=\"noreferrer noopener\">Syed Balkhi recommended in 2015</a>&nbsp;— managing license keys&nbsp;<a href=\"https://poststatus.com/notes/crate-wants-help-escape-license-key-hell/\" target=\"_blank\" rel=\"noreferrer noopener\">will still be hell</a> for someone.</p>\n\n\n\n<p>I haven\'t thought about <a href=\"https://cratewp.com/\" target=\"_blank\" rel=\"noreferrer noopener\">Crate</a> in a long time, but it has been around for quite some time. It\'s a way to get out of &#8220;license hell&#8221; — and deal with other challenges that won\'t apply and can\'t be afforded by a lot of small to mid-sized WordPress businesses. Rob\'s <a href=\"https://wordpress.org/plugins/wp-wallet/\" target=\"_blank\" rel=\"noreferrer noopener\">WP Wallet</a> is aimed at that broader market. It sounds like a worthwhile project, along with <a href=\"https://poststatus.com/podcast/wp-notify/\" target=\"_blank\" rel=\"noreferrer noopener\">WP Notify</a> and <a href=\"https://poststatus.com/podcast/clarity/\" target=\"_blank\" rel=\"noreferrer noopener\">Clarity</a>. For those who work with WordPress on a daily basis, getting control of notifications and aggressive advertising in the WordPress back-end is universally wanted.</p>\n\n\n\n<blockquote><p> It would be fantastic if more plugin shops catered to the needs and concerns of agencies and freelancers who don\'t want their clients to ever see an upgrade notice or an upsell pretending to be one.</p></blockquote>\n\n\n\n<h2 id=\"h-is-license-hell-necessary\">Is license hell necessary?</h2>\n\n\n\n<p>It\'s not hard to see that people who want to pay for plugins (and essentially resell them to their customers) are the people you want to keep happy and maintain a good relationship with, as a plugin owner. It would be fantastic if more plugin shops catered to the needs and concerns of agencies and freelancers who don\'t want their clients to ever see an upgrade notice or an upsell pretending to be one. (Or to be locked out of anything.)</p>\n\n\n\n<blockquote><p>Educating newcomers to WordPress and shaping their expectations about your product is good for everyone.</p></blockquote>\n\n\n\n<h2 id=\"h-whiny-free-riders-are-people-and-potential-customers-too\">Whiny free-riders are people (and potential customers) too</h2>\n\n\n\n<p>I\'d also like to stick up for the frustrations of people who just don\'t understand what a support license subscription is and why they should happily pay for continuous upgrades. Yes, they often look like and act like free riders. We can\'t expect different if we don\'t market and communicate effectively to them.</p>\n\n\n\n<p>Educating newcomers to WordPress and shaping their expectations about your product is good for everyone. If customers or potential customers are upset because they\'re being pressed to repeatedly pay for something they don\'t understand (it’s not a buy-once, own-forever product!) that\'s on the seller. Rob has some good ideas for how to better communicate the proper expectations to customers. Giving options to people who want to pay one time or less frequently than an annual cycle is one solution that ought to appeal to professional WordPressers too.</p>\n\n\n\n<h2 id=\"h-product-or-service-what-am-i-paying-for-what-do-i-own\">Product or service? What am I paying for? What do I own?</h2>\n\n\n\n<p>A decade ago (and even before that) I used to keep local copies of WordPress plugins (and add-ons for other CMSes) even though I knew it was pointless because they\'d be obsolete quickly. I was treating plugins like my music collection in the early days of iTunes. I knew it was crazy, but the drive to &#8220;own&#8221; something is strong. Many of us are now paying to access music we previously owned on CDs, tapes, etc.</p>\n\n\n\n<p>This is still a new and evolving digital media culture. There are good reasons many people resist the SaaSification of everything. It\'s a model that makes sense for a lot of commercial plugins: mimic Netflix\'s marketing and sell a plugin as a service . But <a href=\"https://speckyboy.com/wordpress-theme-plugin-license-expires/\" target=\"_blank\" rel=\"noreferrer noopener\">I agree with Eric Karkovack</a> that more needs to be done to help potential customers understand the value of continuously paying for software updates. Why can\'t that involve a good user experience too?</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 11 May 2022 21:40:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Dan Knauss\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"Post Status: This Week at WordPress.org (May 9, 2022)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=97396\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://poststatus.com/this-week-at-wordpress-org-may-9-2022/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:15710:\"<p class=\"has-theme-palette-7-background-color has-background\">Each week we are highlighting the news from WordPress.org that you don\'t want to miss.  If you or your company create products or services that use WordPress, we\'ve got the news you need to know. Be sure to share this resource with your product and project managers. <br /><br /><strong>Are you interested in giving back and contributing your time and skills to WordPress.org?</strong> <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f64f.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/support/article/contributing-to-wordpress/\">Start Here ›</a><br /><br /><strong>Get our weekly WordPress community news digest</strong> — Post Status\' <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> — covering the WP/Woo news plus significant writing and podcasts. It\'s also available in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f48c.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n\n\n\n<h2 id=\"h-news\">News</h2>\n\n\n\n<ul><li><a href=\"https://wordpress.org/news/2022/04/wordpress-6-0-beta-3/\"></a><a href=\"https://wordpress.org/news/2022/05/wordpress-6-0-release-candidate-2-rc2-now-available-for-testing/\">WordPress 6.0 Release Candidate 2 (RC2) Now Available for Testing</a></li><li><a href=\"https://wordpress.org/news/2022/05/the-month-in-wordpress-april-2022/\">The Month in WordPress – April 2022</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/03/wordpress-6-0-field-guide/\">WordPress 6.0 Field Guide</a></li><li>New <a href=\"https://poststatus.com/planet/feed/#5ftf\">Five for the Future</a> section below! </li></ul>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_a98156-c2\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"wp-block-columns\">\n<div class=\"wp-block-column\">\n<h2 id=\"h-accessibility\"><a href=\"https://make.wordpress.org/accessibility\">Accessibility</a></h2>\n\n\n\n<ul><li>Request for feedback on the&nbsp;<a href=\"https://make.wordpress.org/project/2022/04/01/discussion-contrib-handbook-part-1/\">WordPress Accessibility Statement</a>.</li></ul>\n\n\n\n<h2 id=\"h-central\"><a href=\"https://central.wordcamp.org\">Central</a></h2>\n\n\n\n<ul><li><a href=\"https://central.wordcamp.org/news/2022/05/wordcamp-europe-2022-is-just-around-the-corner/\">WordCamp Europe 2022 is just around the corner</a></li><li><a href=\"https://central.wordcamp.org/news/2022/05/join-the-european-wordpress-community-in-porto-portugal/\">Join the European WordPress Community in Porto, Portugal!</a></li></ul>\n\n\n\n<h2 id=\"h-core\"><a href=\"https://make.wordpress.org/core\">Core</a> </h2>\n\n\n\n<p>Reminder: <a href=\"https://developer.wordpress.org/block-editor/contributors/versions-in-wordpress/\">Gutenberg 13.0 ships with WordPress 6.0</a>.</p>\n\n\n\n<ul><li>&nbsp;<a href=\"https://github.com/WordPress/performance/issues/220\">Add Site Health test for full page caching (advanced cache)</a></li><li>Proposal: <a href=\"https://github.com/WordPress/performance/issues/140\">API to facilitate more accurate sizes #140</a></li><li>Proposal:&nbsp;<a href=\"https://github.com/WordPress/performance/issues/24\">Regenerate existing image</a></li><li><a href=\"https://github.com/WordPress/performance/issues/289\">Research: Impact of additional WebP images on upload</a></li><li><a href=\"https://github.com/WordPress/performance/issues/290\">Research: WebP compatibility</a></li><li><a href=\"https://docs.google.com/document/d/1NzURb3u-KZTgYYHK9Gx_KPvSCX4N8Ci3oZfLsfVF7Tk/edit\">Measurement overview doc</a></li><li><a href=\"https://docs.google.com/document/d/1elY0vgrLU2373mX3jSUj_vFZeGDyhED1WMPYwzSYiVA/edit\">Capturing front-end performance metrics in WordPress doc</a>&nbsp;</li><li><a href=\"https://make.wordpress.org/core/2022/05/03/a-week-in-core-may-2-2022/\">A Week in Core – May 2, 2022</a></li></ul>\n\n\n\n<h3 id=\"h-devnotes\">DevNotes</h3>\n\n\n\n<p>Leading up to releasing WordPress 6.0, DevNotes and release-related information will remain.</p>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2022/05/03/wordpress-6-0-field-guide/\">WordPress 6.0 Field Guide</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/05/block-locking-settings-in-wordpress-6-0/\">Block Locking Settings in WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/04/wordpress-6-0-release-candidate-phase/\">WordPress 6.0 Release Candidate Phase</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/03/miscellaneous-dev-notes-for-wordpress-6-0/\">Miscellaneous Dev Notes for WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/03/block-editor-miscellaneous-dev-notes-for-wordpress-6-0/\">Block Editor miscellaneous Dev Notes for WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/03/page-creation-patterns-in-wordpress-6-0/\">Page creation patterns in WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/03/global-styles-variations-in-wordpress-6-0/\">Global Styles variations in WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/03/separator-block-updated-to-use-block-supports-color-settings/\">Separator block: Updated to use block supports color settings</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/03/block-markup-updates-for-image-quote-list-and-group-blocks/\">Block markup updates for image, quote, list, and group blocks</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/03/support-for-handling-resolution-errors-for-editor-data-module/\">Support for handling resolution errors for Editor data module</a></li><li><a href=\"https://make.wordpress.org/core/2022/04/28/taxonomy-performance-improvements-in-wordpress-6-0/\" target=\"_blank\" rel=\"noreferrer noopener\">Taxonomy performance improvements in WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/04/27/changes-to-do_parse_request-filter-in-wordpress-6-0/\">Changes to the do_parse_request filter in WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/04/29/caching-improvements-in-wordpress-6-0/\">Caching improvements in WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/04/27/new-filter-to-modify-content-images-in-wordpress-6-0/\">New filter to modify content images in WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/02/media-storing-file-size-as-part-of-metadata/\">Media: storing file size as part of the metadata</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/05/updates-to-the-wordpress-create-block-templating-system/\">Updates to the @wordpress/create-block templating system</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/02/object-type-specific-registration-hooks-in-6-0/\">Object type-specific registration hooks in 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/04/28/taxonomy-performance-improvements-in-wordpress-6-0/\">Taxonomy performance improvements in WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/02/new-features-for-working-with-patterns-and-themes-in-wordpress-6-0/\">New features for working with patterns and themes in WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/02/theme-export-in-wordpress-6-0/\">Theme export in WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/04/29/wp_user_query-now-accepts-fields-options-in-wordpress-6-0/\">WP_User_Query now accepts fields options in WordPress 6.0&nbsp;</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/02/performance-increase-for-sites-with-large-user-counts-now-also-available-on-single-site/\">Performance increase for sites with large user counts (now also available on a single site)</a></li></ul>\n\n\n\n<h2 id=\"h-docs\"><a href=\"https://make.wordpress.org/docs\">Docs</a></h2>\n\n\n\n<ul><li><a href=\"https://wordpress.tv/2022/03/30/milana-cap-birgit-pauli-haack-courtney-engle-robertson-femy-praseeth-akira-tachibana-wordpress-release-6-0-trac-ticket-triage-for-docs/\">WordPress release 6.0 Trac ticket triage for docs</a></li><li><a href=\"https://make.wordpress.org/updates/2022/04/25/documentation-team-update-april-25-2022/\">Documentation Team Update – April 25, 2022</a></li><li><a href=\"https://make.wordpress.org/updates/2022/05/09/documentation-team-update-may-9-2022/\">Documentation Team Update – May 9, 2022</a></li></ul>\n\n\n\n<h3 id=\"h-support-docs\"><a href=\"https://wordpress.org/support/articles\">Support Docs:</a></h3>\n\n\n\n<ul><li><a href=\"https://wordpress.org/support/article/css/\">CSS</a></li></ul>\n</div>\n\n\n\n<div class=\"wp-block-column\">\n<h2 id=\"h-community\"><a href=\"https://make.wordpress.org/community\">Community</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/community/2022/04/22/wpdiversity-is-expanding-to-apac/\"><a href=\"https://make.wordpress.org/community/2022/05/11/join-the-community-team-for-a-wpdiversity-writing-sprint-may-23-to-may-30/\">Join the Community Team for a #WPDiversity Writing Sprint: May 23 to May 30</a></a></li><li><a href=\"https://make.wordpress.org/community/2022/04/22/wpdiversity-is-expanding-to-apac/\"><a href=\"https://make.wordpress.org/community/2022/05/06/report-allyship-and-diverse-speaker-workshops-april-2022/\">Report: Allyship and Diverse Speaker Workshops April 2022</a></a></li></ul>\n\n\n\n<h2 id=\"h-design\"><a href=\"https://make.wordpress.org/design\">Design</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/design/2022/05/09/design-share-apr-25-may-6/\">Design Share:&nbsp;Apr 25–May 6</a></li></ul>\n\n\n\n<h2 id=\"h-hosting\"><a href=\"https://make.wordpress.org/hosting\">Hosting</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/hosting/2022/05/04/get-ready-for-wordpress-6-0/\">Get ready for WordPress 6.0</a></li></ul>\n\n\n\n<h2 id=\"h-meta\"><a href=\"https://make.wordpress.org/meta\">Meta</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/meta/2022/04/28/proposal-make-wordpress-team-or-project-updates/\">Proposal: Make WordPress Team or Project Updates</a></li></ul>\n\n\n\n<h2 id=\"h-mobile\"><a href=\"https://make.wordpress.org/mobile\">Mobile</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/mobile/2022/05/02/call-for-testing-wordpress-for-ios-19-8/\">Call for Testing: WordPress for iOS 19.8</a></li><li><a href=\"https://make.wordpress.org/mobile/2022/05/02/call-for-testing-wordpress-for-android-19-8/\">Call for Testing: WordPress for Android 19.8</a></li></ul>\n\n\n\n<h2 id=\"h-plugins\"><a href=\"https://make.wordpress.org/plugins\">Plugins</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/updates/2022/05/10/plugin-review-team-status-9-may-22/\">Plugin Review Team Status: 9 May ’22</a></li></ul>\n\n\n\n<h2 id=\"h-polyglots\"><a href=\"https://make.wordpress.org/polyglots\">Polyglots</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/polyglots/2022/05/02/wordpress-6-0-ready-to-be-translated/\">WordPress 6.0 ready to be translated</a></li></ul>\n\n\n\n<h2 id=\"h-project\"><a href=\"https://make.wordpress.org/project\">Project</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/project/2022/04/29/discussion-contrib-handbook-part-2/\">Discussion: Contrib Handbook, Part 2</a></li><li><a href=\"https://make.wordpress.org/project/2022/04/01/discussion-contrib-handbook-part-1/\">Discussion: Contrib Handbook, Part 1</a></li></ul>\n\n\n\n<h2 id=\"h-test\"><a href=\"https://make.wordpress.org/test\">Test</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/test/2022/04/28/fse-program-testing-call-14-rallying-recipe-reviewers/\">FSE Program Testing Call #14: Rallying Recipe Reviewers</a></li></ul>\n\n\n\n<h2 id=\"h-themes\"><a href=\"https://make.wordpress.org/themes\">Themes</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/themes/2022/04/28/latest-changes-in-gutenberg-themes-13-0-release/\">Latest changes in Gutenberg + Themes: 13.0 release</a></li><li><a href=\"https://make.wordpress.org/updates/2022/05/10/themes-team-update-may-10-2022/\">Themes team update May 10, 2022</a></li></ul>\n\n\n\n<h2 id=\"h-support\"><a href=\"https://make.wordpress.org/support\">Support</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/support/2022/04/off-forum-support-requests/\">Off forum support requests</a></li></ul>\n\n\n\n<h3 id=\"h-support-articles\">Support Articles:</h3>\n\n\n\n<ul><li></li></ul>\n\n\n\n<h2 id=\"h-training\"><a href=\"https://make.wordpress.org/training\">Training</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/training/2022/04/19/migrating-contributor-training-to-learn-wordpress/\"></a><a href=\"https://make.wordpress.org/training/2022/05/03/may-2022-sprint/\">May 2022 Sprint</a></li><li><a href=\"https://make.wordpress.org/training/2022/05/05/the-training-team-faculty-program-is-now-live/\">The Training Team Faculty Program is now live</a></li></ul>\n\n\n\n<h4 id=\"h-workshops\">Workshops:</h4>\n\n\n\n<ul><li><a href=\"https://learn.wordpress.org/workshop/understanding-the-page-editor-vs-site-editor/\">Understanding the Page Editor vs. Site Editor</a></li></ul>\n\n\n\n<h4 id=\"h-social-learning-spaces\">Social Learning Spaces:</h4>\n\n\n\n<ul><li><a href=\"https://learn.wordpress.org/?meeting=open-source-principles-and-wordpress\">Open Source Principles and WordPress</a></li><li><a href=\"https://learn.wordpress.org/?meeting=wordpress-5-9-lookback-6-0-look-ahead\">WordPress 5.9 Lookback & 6.0 Look ahead</a></li><li><a href=\"https://learn.wordpress.org/?meeting=showcasing-content-with-query-loops-2\">Showcasing Content with Query Loops</a></li></ul>\n</div>\n</div>\n\n\n\n<h2 id=\"5ftf\"><a href=\"https://wordpress.org/five-for-the-future/\">Five for the Future</a></h2>\n\n\n\n<p>What\'s happening specific to Five for the Future? Provide your feedback on these posts:</p>\n\n\n\n<ul><li><a href=\"https://github.com/WordPress/five-for-the-future/issues/190\">Consider launching end-to-end solution for a specific team</a></li><li><a href=\"https://github.com/WordPress/five-for-the-future/issues/182\">Tracking contributions: receiving special access</a></li><li><a href=\"https://github.com/WordPress/five-for-the-future/issues/180\">Tracking contributions: meeting attendance</a></li><li><a href=\"https://github.com/WordPress/five-for-the-future/issues/177\">Tracking Contributions: HelpScout</a></li><li><a href=\"https://github.com/WordPress/five-for-the-future/issues/176\">Tracking Contributions: Contributors share their contributions periodically.&nbsp;</a></li></ul>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile has-background\"><a href=\"https://poststatus.com/\"><img src=\"https://cdn.poststatus.com/wp-content/uploads/2021/09/vertical-post-status-logo-250.png\" alt=\"Post Status\" class=\"wp-image-85823 size-full\" /></a><div class=\"wp-block-media-text__content\">\n<p class=\"has-text-align-left has-normal-font-size\" id=\"h-get-ready-for-remote-work\">You — and <a href=\"https://poststatus.com/business-membership/\">your whole team</a> can <a href=\"https://poststatus.com/post-status-membership-club/\">Join Post Status</a> too!</p>\n\n\n\n<p class=\"has-text-align-left has-small-font-size\"><strong>Build your network. Learn with others. Find your next job — or your next hire.</strong> Read the <strong>Post Status</strong> <a href=\"https://poststatus.com/newsletter/\">newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/2709.png\" alt=\"✉\" class=\"wp-smiley\" /> Listen to <a href=\"https://poststatus.com/podcasts/\">podcasts</a>. <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f399.png\" alt=\"?\" class=\"wp-smiley\" /> Follow <a href=\"https://twitter.com/post_status/\">@Post_Status</a>. <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f426.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n</div></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 11 May 2022 14:58:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Courtney Robertson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"WPTavern: #26 – Courtney Robertson on How the Learn Project Is Educating People About WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=133875\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:111:\"https://wptavern.com/podcast/26-courtney-robertson-on-how-the-learn-project-is-educating-people-about-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:49272:\"<p>On the podcast today we have <a href=\"https://twitter.com/courtneyr_dev\">Courtney Robertson</a>.</p>\n\n\n\n<p>Courtney is a Developer Advocate at GoDaddy Pro who has a passion for teaching and learning, specifically about how to use WordPress.</p>\n\n\n\n<p>Her work for GoDaddy Pro involves outreach to developers but it also includes time to help contribute to WordPress as well. Courtney uses this time to assist with the <a href=\"https://make.wordpress.org/training/\">WordPress Training Team</a> as well as <a href=\"https://learn.wordpress.org/\">Learn WordPress</a>.</p>\n\n\n\n<p>If you’re new to WordPress, or have been using it for years, there’s always something new to learn. WordPress never stands still. In the recent past the adoption of blocks and Full Site Editing has meant that the way of interacting with WordPress has changed entirely. You could of course figure out how everything in WordPress works all by yourself, but it would be great if there were freely available materials which you could use to accelerate your knowledge. That’s what Courtney is involved in and what this podcast is all about.</p>\n\n\n\n<p>We talk about the history of the project and how it was started as a way to assist people in putting on WordCamps and Meetups. Since then the scope of WordPress training has grown enormously.</p>\n\n\n\n<p>We discuss what areas of WordPress are covered by the learning materials, what constraints there are on the type of content that is made, and what formats they take.</p>\n\n\n\n<p>Who creates the content and how do they ensure that it’s up to date and of a high enough standard? Can people become certified if they complete different learning paths?</p>\n\n\n\n<p>We round off by talking about how you can become involved with the team if you’re keen to help others learn more about WordPress.</p>\n\n\n\n<h2>Useful links.</h2>\n\n\n\n<p><a href=\"https://courtneyr.dev/\">Courtney&#8217;s website</a></p>\n\n\n\n<p><a href=\"https://learn.wordpress.org/\">Learn WordPress</a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/training/\">WordPress Training Team</a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/training/getting-started/\">What does the WordPress Training team do?</a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/training/handbook/guidelines/brand-usage-guidelines/\">Brand Usage Guidelines</a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/training/handbook/guidelines/promotional-guidelines/\">Promotional Guidelines</a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/training/2022/01/18/training-team-goals-for-2022/\">Training Team Goals for 2022</a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/training/2022/05/03/may-2022-sprint/\">May 2022 Sprint</a></p>\n\n\n\n<p><a href=\"https://github.com/WordPress/Learn/projects/2?card_filter_query=label%3A%22%5Bpriority%5D+high%22#column-17929295\">Learn WordPress Github repo</a></p>\n\n\n\n<p><a href=\"https://github.com/WordPress/Learn/issues/new?assignees=&labels=Awaiting+Triage%2C+%5BContent+Type%5D+Lesson+Plan&template=lesson-plan-template.md&title=Topic+-+Lesson+Plan\">Lesson Plan template</a></p>\n\n\n\n<p><a href=\"https://learn.wordpress.org/lesson-plans\">Lesson Plans</a></p>\n\n\n\n<p><a href=\"https://learn.wordpress.org/workshops/\">Workshops</a></p>\n\n\n\n<p><a href=\"https://learn.wordpress.org/courses/\">Courses</a></p>\n\n\n\n<p><a href=\"https://learn.wordpress.org/social-learning/\">Social Learning Spaces </a></p>\n\n\n\n<p><a href=\"https://learn.wordpress.org/pathways-to-learn-wordpress/\">Pathways to Learn WordPress</a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/training/2021/05/03/high-level-roadmap-to-learning-wordpress-development/\">High-Level Roadmap to Learning WordPress Development</a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/training/2021/08/08/who-can-learn-help/\">Who can Learn WordPress help?</a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/meetings/#training\">Upcoming WordPress Meetings</a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/training/2021/09/27/proposal-ensuring-high-quality-video-contributions-to-learn-wordpress/\">Ensuring high-quality video contributions to Learn WordPress</a></p>\n\n\n\nTranscript<div>\n<p>[00:00:00] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley. Jukebox is a podcast which is dedicated to all things WordPress, the people, the events, the plugins, the themes, the blocks, and in this case, learning about how WordPress works. If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to wptavern.com forward slash feed forward slash podcast.</p>\n\n\n\n<p>And you can copy that URL into most podcasts players. If you have a topic that you&#8217;d like us to feature on the podcast, I&#8217;m keen to hear from you and hopefully get you or your idea featured on the show. Head over to wptavern.com forward slash contact forward slash jukebox and use the contact form there.</p>\n\n\n\n<p>So on the podcast today we have Courtney Robertson. Courtney is a developer advocate at GoDaddy Pro who has a passion for teaching and learning, specifically about how to use WordPress. Her work for GoDaddy Pro involves outreach to developers, but it also includes time to help contribute to WordPress as well. Courtney uses this time to assist with the WordPress training team, as well as Learn WordPress.</p>\n\n\n\n<p>If you&#8217;re new to WordPress or have been using it for years, there&#8217;s always something new to learn. WordPress never stands still. In the recent past, the adoption of blocks and full site editing has meant that the way of interacting with WordPress has changed entirely.</p>\n\n\n\n<p>You could of course, figure out how everything in WordPress works all by yourself, but it would be great if there were freely available materials, which you could use to accelerate your knowledge. That&#8217;s what Courtney is involved in and what this podcast is all about.</p>\n\n\n\n<p>We talk about the history of the project and how it was started as a way to assist people in putting on WordCamps and meetups. Since then, the scope of WordPress training has grown enormously.</p>\n\n\n\n<p>We discuss what areas of WordPress are covered by the learning materials, what constraints there are on the types of content that is made, and what formats they take. Who creates the content and how do they ensure that it&#8217;s up to date and have a high enough standard? Can people become certified if they complete different learning paths? We round off by talking about how you can become involved with the team if you&#8217;re keen to help others learn more about WordPress.</p>\n\n\n\n<p>If you&#8217;re interested in finding out more, you can find all the links in the show notes by heading over to wptavern.com forward slash podcast, where you&#8217;ll find all the other episodes as well.</p>\n\n\n\n<p>And so, without further delay. I bring you Courtney Robertson.</p>\n\n\n\n<p>I am joined on the podcast today by Courtney Robertson. Hello Courtney.</p>\n\n\n\n<p>[00:03:29] <strong>Courtney Robertson:</strong> Hello Nathan, how are you today?</p>\n\n\n\n<p>[00:03:31] <strong>Nathan Wrigley:</strong> I&#8217;m really good. Thanks for joining us on the podcast today?</p>\n\n\n\n<p>We are going to talk about learning all about WordPress, how you might learn about the things that are going on in WordPress and potentially how you may contribute to that learning process for other people.</p>\n\n\n\n<p>But before we get into that, Courtney, I always ask a fairly generic question at the start. I want some orientation really, so that people who are listening know who you are. Would you mind just telling us a little bit about yourself and your relationship with WordPress.</p>\n\n\n\n<p>[00:03:59] <strong>Courtney Robertson:</strong> Sure. So I first found WordPress because I was teaching in a classroom in 2006. Needed both an LMS and a blog. And at that time, LMS was not an option inside of WordPress yet. WordPress was really just getting started. So I remember, I think around WordPress version two, installing it and figuring out what was going on.</p>\n\n\n\n<p>I have spent some time building sites for clients. And then I found myself back to teaching again with high school students. Teaching WordPress development this time. And it would have been around 2015 in a career technical school. Later I went on to work at a few plug-in companies. I got a lot of experience in The Events Calendar. Writing technical documents, knowledge-base articles, making sure front of sight was updated along with all of our releases.</p>\n\n\n\n<p>And then later found myself teaching WordPress development at a front end dev bootcamp. So I had both high school students and adults that were laid off due to Covid, going through a program free of charge to them. And in fact, our high school students were paid to do this. My students got to speak for WordCamp Philly, so that was really exciting.</p>\n\n\n\n<p>And then I found that I really wanted to go a level up, and make the training material that any institution could use. I found the material needed to teach WordPress development successfully, to get folks actually employed in the WordPress industry. And so an opportunity opened up at GoDaddy Pro for me as a developer advocate, and that affords me some time to continue contributing to the training team.</p>\n\n\n\n<p>[00:05:37] <strong>Nathan Wrigley:</strong> Would you be able to just elucidate a little bit more about the GoDaddy Pro angle? How does that work? Are you essentially employed by GoDaddy Pro and they allow you to have a proportion of your time over at the learn project that we&#8217;re going to be talking about later?</p>\n\n\n\n<p>[00:05:52] <strong>Courtney Robertson:</strong> Yes, that would be correct. So I am a developer advocate, which means that my internal work involves our outreach and our community efforts, specifically oriented for developers. But also this role is one that involves contributing to WordPress itself. And the avenue that I take with that is to contribute on learn.wordpress.org or the WordPress training team.</p>\n\n\n\n<p>So in companies that have folks contributing to the project. Some are full-time sponsored. Some get a certain number of hours per week, or per month, or however the company chooses to allocate that to contribute towards WordPress.</p>\n\n\n\n<p>[00:06:32] <strong>Nathan Wrigley:</strong> Now I&#8217;m guessing, and we&#8217;ll come to that a little bit later. I&#8217;m guessing that there&#8217;ll be an opportunity in this podcast to talk about how other people may become involved. Before we get to that, let&#8217;s just deal with what the whole learn project is. And again, it&#8217;s a fairly generic question.</p>\n\n\n\n<p>Would you just give us some, some understanding of what we might find, what the history of learn is over the last few years? Basically, what is the learn project all about?</p>\n\n\n\n<p>[00:06:57] <strong>Courtney Robertson:</strong> Yeah. So the team behind the learn project is the training team. And we&#8217;ve been around since 2013, and have been working on creating content that would be published eventually on learn. learn.Wordpress.org launched in 2020, during the height of Covid. So we already had a stockpile of content ready to go, and we&#8217;re able to load that up.</p>\n\n\n\n<p>Learn has several different purposes or formats. Different audiences can come to learn. So the training team began with a mission of creating material for meetup organizers. If you&#8217;re hosting a meetup and you&#8217;re doing the work of preparing the meetup, but then you also need to figure out what&#8217;s my topic and who&#8217;s presenting and all of these things.</p>\n\n\n\n<p>Well, the training team has been making lesson plans available, so that a meetup organizer already has topics at the ready. With research done, and all of the resources available. Indicating, cover this topic, here&#8217;s how to present the information. But also those same lesson plans have been used in a few different week long type of workshops.</p>\n\n\n\n<p>So we have quite a good bit of material in that regard. We also have workshops. Workshops are videos. They&#8217;re on demand, and their audience is direct learners. So somebody that wants to find out how to do the thing, at any time of day can come and watch the video. The videos could also be played, I have heard that several meetup groups have done this during a meetup or string, a series of them together.</p>\n\n\n\n<p>And then we have courses. And courses are sort of a roll-up of both of those pieces. So if you think of your years in school. You had a specific subject that you were studying. That was an entire course. And each day your instructor or presenter would have a smaller segment for just that day to cover.</p>\n\n\n\n<p>So a course would bring in some of the content from lesson plans and some of the content from workshops. And it would be self-paced, on demand. And those courses, when you complete them, do show a completion notification, I would say, on your wordpress.org profile. So if you&#8217;re looking at your wordpress.org profile and you look at the activity, you would see if somebody has completed a course.</p>\n\n\n\n<p>We have a proposal out to move those to its own designated tab. Going to give the heads up ahead of time, we&#8217;ll never call them batches because teams use badges to indicate contributors to teams in WordPress. But learn.wordpress.org is a great resource for somebody that wants to come and learn all kinds of things.</p>\n\n\n\n<p>Whether you are teaching others, or on demand learning, and you just need that one specific piece or want to go through an entire course. And at this time, I believe we&#8217;ve got five courses on getting started with WordPress, all the way up through using FSE, full site editing, to build out a site. And we have a few contributor courses that have moved over that the community team had housed previously, to help folks get onboarded with contributing.</p>\n\n\n\n<p>And then finally we have social learning spaces. And you may see those in your WordPress dashboard on the upcoming events area, but you also can find them on learn.wordpress.org. It is technically a meetup group under the hood and uses Zoom. These are sessions that happen and there are several throughout the week. Every week, there are several going on that you could swing by for about an hour. Sometimes an hour and a half or so, and learn whatever the topic is that&#8217;s being presented that day. Great folks like Daisy Olsen have been running a lot of those along with Sarah Snow. I&#8217;ve got one coming up soon with Anne and Sarah. Anne, a lot of us know, Anne McCarthy. We&#8217;ll be doing a call for testing using one of those social learning spaces.</p>\n\n\n\n<p>[00:10:31] <strong>Nathan Wrigley:</strong> That&#8217;s fabulous. I genuinely didn&#8217;t know that prime mover of the whole learn project was to assist people putting on meetups. Was the intention there just to facilitate people who were potentially, maybe trying it out for the first time. We were all in lockdown, as you said, and, and it&#8217;s quite daunting, isn&#8217;t it to</p>\n\n\n\n<p>[00:10:49] <strong>Courtney Robertson:</strong> Yeah.</p>\n\n\n\n<p>[00:10:49] <strong>Nathan Wrigley:</strong> to begin something like that, and just the process of setting one up might be daunting enough, but then to actually find material that you can talk about, was that the intention there? Just to bootstrap and kickstart more and more meetups?</p>\n\n\n\n<p>[00:11:00] <strong>Courtney Robertson:</strong> That was the intention in 2013. It has grown significantly, as you can imagine in that time. As has WordPress and the WordPress community. So in 2013, meetups were really just a new thing. And we were looking at ways to support meetup groups. And as things have evolved, we now want to help the job pipelines. We would like to provide some official guidance as to what should be covered for what skillsets.</p>\n\n\n\n<p>[00:11:29] <strong>Nathan Wrigley:</strong> It&#8217;s a really exciting time in WordPress. There&#8217;s so much happening. A lot of that centered around the new editor and full site editing and so on. So there&#8217;s definitely lots and lots of opportunities for things to be taught. I&#8217;m just wondering, in terms of the types of content that you will be putting or potentially that you will have put. Do you have any sort of constraints on the remit of the project?</p>\n\n\n\n<p>So for example, is it always going to be focused on the core of WordPress? Things that you can do inside of Core? What I&#8217;m really asking there, I suppose, in a backhanded way is do you stray into other areas, for example, things like third party plugins and things like that?</p>\n\n\n\n<p>[00:12:07] <strong>Courtney Robertson:</strong> Good question. We began our delve into third party plugins at WordCamp US in 2015. Those that have been around a while may know this. If you wanted to add some custom CSS to a site, before the customizer had it available, we needed Jetpack to do that. So as a team, we essentially indicated we want to make use of third party plugins.</p>\n\n\n\n<p>The parameters need to be that it&#8217;s in the wordpress.org repo. As things have launched, our main focus has started really with how to use WordPress to put a basic site together. However our audience for who can learn help is really vast. So we&#8217;ve formed some guidelines around third party plugins, and also for those that are hosting some social learning spaces. If somebody volunteers to host one, and many folks do volunteer to host those, we can&#8217;t be overly self-promotional, and if we are mentioning in any of our training materials, any type of plugin or something to that effect, that it be available, plugins, themes, be available through wordpress.org.</p>\n\n\n\n<p>We try to draw on the theme unit test data for our dummy content. We use the photos repo for our media. We use the showcase for showing off what WordPress is capable of doing. So we reference our own material as absolutely much as possible in that process, and have some just general guidelines for how we can cover the material safely for everybody.</p>\n\n\n\n<p>[00:13:37] <strong>Nathan Wrigley:</strong> Yeah, I feel that you&#8217;ve answered that really comprehensively. It feels very much like the same kind of constraints that we might have if we were, for example, putting on a WordCamp or something. The nature of the conversation that we could have as a presenter would feel like it&#8217;s falling under the same kind of boundaries.</p>\n\n\n\n<p>Yeah, that&#8217;s really cleared it up, thank you. Now, the project itself, the WordPress project, as I just alluded to a minute ago, it is really changed over the last few years. If you roll back the clock five or six years, the way WordPress behaved, the way that you created content is now completely different.</p>\n\n\n\n<p>And we&#8217;ve got all sorts of things which are coming down the pipe and they&#8217;re coming thick and fast. Things like full site editing and all of that kind of stuff. I&#8217;m just wondering what your priority list is? It feels to me like this question is basically asking what&#8217;s the roadmap? What kind of things that you&#8217;re prioritizing? Because there must be a limited amount of hours in everybody&#8217;s day that&#8217;s connected to the team and you&#8217;ve got to decide, okay, this feels like it matters more right now. Can you give us some idea about what are you thinking for the learn platform in the near future?</p>\n\n\n\n<p>[00:14:40] <strong>Courtney Robertson:</strong> Yeah, that&#8217;s a great question. So our team is comprised of both sponsored and self-sponsored or volunteers in all capacities. So that looks like there are a few folks that are sponsored by Automattic led by Hugh Lashbrooke, to be part of our team, as well as delightful project manager, Hauwa Abashir, and a plugin co-founder Pooja Derashri.</p>\n\n\n\n<p>And so that&#8217;s the core of our team. However, we have a lot of contributors and I say this first, because in open source, we can have some high-level type of priorities, but as you know, when it comes to people volunteering to do something, they&#8217;ll volunteer to what they want to do, and they&#8217;re not going to volunteer for what doesn&#8217;t interest them all the time.</p>\n\n\n\n<p>So with our priorities, we have a few ways of looking at priorities. The content priority is lately focused on doing as much as we can that is geared towards a release as close to release as possible. We have some great ways of trying to work a little bit into the future. So that right now we&#8217;re already preparing material that will come out with the next release.</p>\n\n\n\n<p>That would be 6.0 at the time of today&#8217;s recording. But we also have some other priorities as well, as you can imagine. We&#8217;re managing a website, a large website that is on a massive multi-site install. And so some of those other priorities look like, we just moved the team from Trello over to GitHub to help track all of the activity of what we&#8217;re creating and what our roadmap actually looks like and what our priorities are. That also helps surface our activity and contribution to the project, because that too then will help track with our .org profiles.</p>\n\n\n\n<p>We have some needs, some really big needs coming up. There is ideas around merging lesson plans and workshops. So that would be the instructional materials as well as the video that coincides with it, that would need to develop a resourcing. We would like to do a little bit more with the UX. We had a UX audit come back and we would like to do some more with the front of site. But again, that too would need some developer lift.</p>\n\n\n\n<p>And at this time our theme is not block-based and in our case, that could be helpful for us to help lay out that content in a way that would be more beneficial for learners as they come in. To find our roadmap, there will be lots of show notes available. To find our roadmaps, we have a few places, and I know that seems a little tricky. Go to make.wordpress.org/training, and from there, you&#8217;ll find a big blue box that talks about the training team&#8217;s goals for 2022. One of the next goals aside from content is a needs analysis. So that means actually talking to the WordPress community and saying, everything from a hobbyist, a small business owner to a large scale enterprise level agency.</p>\n\n\n\n<p>What do you need for training your staff? How can we help you reach those goals? What do you think the highest priority of content should be? And in what order should that happen? Get the feedback of what actually matters. And what&#8217;s going to be most beneficial. Who&#8217;s using this and how can we make it better?</p>\n\n\n\n<p>We also have sprints, and those sprints are, what are we working on just this month that is both content or the other annual goal type of projects? And so each month we&#8217;ll publish at the beginning of the month, what we&#8217;re doing this month, and at the end of the month, we&#8217;ll post a recap. How did it go? What did we get done? And we have our issues in GitHub and there&#8217;ll be some links available for those too. So if you want to see what&#8217;s the highest priority thing that I can contribute to, you could go right to our GitHub repo that shows you exactly that issue.</p>\n\n\n\n<p>[00:18:23] <strong>Nathan Wrigley:</strong> I have to say Courtney, you&#8217;ve done a fabulous job of giving me links. Virtually everything that Courtney is mentioning is going to be referenced in the show notes. So firstly Bravo, thank you for making my life easier and doing that. That&#8217;s brilliant. But just to say if you are curious about any of these bits, you&#8217;ll be able to find a portion in the show notes, which relates to each of the questions that we&#8217;re asking and in most cases there&#8217;s several links to follow through there.</p>\n\n\n\n<p>I&#8217;m just going to ask a question related to what we&#8217;ve just talked about, and that is, I&#8217;m going to use an example, and the example I&#8217;m using is the BBC, which is the British Broadcasting Corporation. The BBC is funded by tax payers essentially. We all have to contribute if we have a television set, and because of the fact that we&#8217;re all contributing there&#8217;s a thing called the BBC charter, and the BBC charter, now it may be imperfect, but it&#8217;s what they got. The charter compels the BBC to make programming for everybody.</p>\n\n\n\n<p>So it may be that there&#8217;s a giant audience for this type of program, and there&#8217;s a considerably smaller audience for this type of programming, but the charter, in theory, compels the BBC to make programming despite the fact that the audience may be smaller. You can see where I&#8217;m going with this probably. I&#8217;m just wondering if you have any of those kinds of things. Does it always come down to the numbers? In other words, if you can see that there&#8217;s a giant need for this, because everybody&#8217;s clamoring for this kind of tutorial or whatever, well, that&#8217;s obviously important, but there may be something over here, a bit of an edge case, really truly crucial to the people who need it, though their numbers may be small. I&#8217;m just wondering if there&#8217;s any those, kind of, bits that fit into the bigger jigsaw.</p>\n\n\n\n<p>[00:20:02] <strong>Courtney Robertson:</strong> They do. Those are areas that we would often allow the individual that has such an idea for that topic to help develop. Because again, open source, we allow the contributors that would like to do something. If they say this is the one thing that I am willing to do, then, okay then, we&#8217;ll work with that.</p>\n\n\n\n<p>That said we do have some priorities as you indicated, but some things will work across multiple pathways. And so by a learning pathway, what I mean is, if you think about who can learn help, and there&#8217;s actually a post that is cross-referenced to something that Josepha had helped create. I want to say it was about two years ago.</p>\n\n\n\n<p>When you think about all the edge cases of who can WordPress help, how is WordPress used? Josepha and Mark Uraine wrote a piece on make WordPress updates awhile ago about care and influence, a theory about the WordPress community. And it&#8217;s this broken down idea that we have, Core, central folks contributing. Then we have contributors on the project. We have extenders that are using WordPress. That will be what we&#8217;re doing right now. That&#8217;d be like a podcast about WordPress. Users of sites and also visitors of sites. And so when you break that down into actual kinds of careers or professions, or even just hobbyists, right?</p>\n\n\n\n<p>That is a lot of things. In the extenders category you have podcasters and you have newsletters, and you&#8217;ve got people that use WordPress for marketing purposes. Some are developers, some are in quality assurance. Some are support staff at companies. So who can learn help? Well, there&#8217;s a lot of varying needs like that.</p>\n\n\n\n<p>And I could see a lot of those edge cases that you mention, still applying to a lot of people. So learns really important. I think that learn is a great tool to help folks into not just the community in terms of events, but the community in terms of understanding what can I do with WordPress? And if WordPress is related to my profession, what do I need to know, and how can I best leverage, what learn has to offer to help me get there.</p>\n\n\n\n<p>[00:22:11] <strong>Nathan Wrigley:</strong> Yeah, thank you. Okay, let&#8217;s move on to the people who may be asking those questions of you. If I was to come to you and I had a particular topic in mind, and there was something that was really troubling me, and I wanted to get to the bottom of it. Are there any ways that I can ask, I don&#8217;t know, beg, plead maybe the right words for certain content to be created?</p>\n\n\n\n<p>[00:22:31] <strong>Courtney Robertson:</strong> Yes. So one of the ways is that if you need a little bit of extra help in doing that, if you are able to get to the make WordPress Slack and the training team inside of that, and you can find the link again from the training team site at make.wordpress.org/training. We are glad to give a little extra hand holding through that process.</p>\n\n\n\n<p>The other thing that we welcome folks to do is, go to our GitHub repo and submit a topic as a lesson plan idea. That does not mean that you need to create the lesson plan. If you would like to help create that or create a workshop, you may absolutely do that. But if it&#8217;s just, I have this one idea, this one thing, or I have got a vision for a course, and I could tell you every step along the way of what needs to go into the course, we are happy to work with you in that process.</p>\n\n\n\n<p>So we would begin with starting an issue in our GitHub repo and to be clear, if you&#8217;re not accustomed to GitHub, it&#8217;s about on par with submitting a form or a comment on a site. So our way of submitting an issue will look similar to that. You&#8217;ll get some preloaded template that asks you to fill in a little bit more information for us. And then we&#8217;ve got that idea of ready to go.</p>\n\n\n\n<p>[00:23:44] <strong>Nathan Wrigley:</strong> Yeah, GetHub can be very intimidating to look at can&#8217;t it, if you&#8217;re there for the time, but like you say, it&#8217;s merely a, a set of comments, so, oh, that&#8217;s really helpful, thank you. In terms of who is making the content, how the content is made, what does that look like? I&#8217;m going to sort of cross two questions here, and we&#8217;ll get onto learning paths and things like that, but just wondering, who&#8217;s actually putting the content together.</p>\n\n\n\n<p>Do you have particular panel, do you give certain members of the team the job of going away and create a video for that particular thing based upon these guidelines? Is it always the same people or can other people contribute their content? In other words, could I contribute my content? And if that was the case, are there any guidelines that would be helpful to know about?</p>\n\n\n\n<p>I mean, there&#8217;s obviously going to be things which are out of the remit, boundaries that I shouldn&#8217;t cross and probably ways that you would prefer me to curate that content.</p>\n\n\n\n<p>[00:24:35] <strong>Courtney Robertson:</strong> Yeah, absolutely. I would love to have you create a video. I love listening to your voice. Anyone is most welcome to help create that content. In fact, when learn launched, because we had this stockpile of lesson plans over the years, I counted nearly 200 contributors, at the launch of learn that had contributed over the years to the training team. That&#8217;s a staggering number for the work that we did.</p>\n\n\n\n<p>And I think back at all of those WordCamps when we had contributor days and all the folks that we met. It was great. So we have lots of people help create the content. But as you can imagine, during Covid, a lot of activity came to an absolute halt. I myself just resurfaced within contributing during that time, and none of the folks were around or available then. Literally no meetings had happened for several months and I had a hard time finding folks. We&#8217;ve grown since then, a lot. And the folks that are contributing these days, as I mentioned, there is a contingent of folks by Automattic that are contributing.</p>\n\n\n\n<p>I am there a good bit as well by making content, but we have a lot of people that are not sponsored. And I had spent about seven years in that category myself. And so I want to be very thoughtful. We&#8217;ve got a lot of folks that are absolutely delightful to work with. Speaking highly of my team reps as well.</p>\n\n\n\n<p>They do contribute so much in the way of content and proofreading. We open up opportunities to help folks proofread the material that goes out or create some feedback for others that are creating that content. So anybody is welcome to help come and make this stuff too.</p>\n\n\n\n<p>[00:26:12] <strong>Nathan Wrigley:</strong> In terms of the guidelines though, what would cut muster for inclusion? Presumably there&#8217;s barriers in terms of, okay, that&#8217;s too short. That&#8217;s far too long. The quality of the audio there is too poor. I think we probably could have covered the topic in half the time or whatever it may be. There are probably guidelines for keeping the quality high.</p>\n\n\n\n<p>[00:26:31] <strong>Courtney Robertson:</strong> That is true. We are working on improving that quality, and we do have a post that I did not provide a link to it ahead of time, and I will dig that back out for you. But it is basically the idea when we first launched, we&#8217;re new, in terms of creating videos. We&#8217;re new in terms of creating courses and let&#8217;s get going and learn as we go, what we&#8217;re doing.</p>\n\n\n\n<p>Our earliest videos, we learned a lot about needing to keep content current with revisions. That&#8217;s a really big struggle. When WordPress ships a big update, we have to come back and revise things. Also we have learned a good bit about, if we need the person&#8217;s video, their face on screen or not, about how to create these videos.</p>\n\n\n\n<p>The kind of quality that we&#8217;re looking for. We are flexible still within those parameters. In fact, one of our highest videos, I think was done during a contributor session for WordCamp India. And there was a bit of background it. So we&#8217;re learning. As we make learn, we&#8217;re learning and we would love to have lots of global representation. We would love to have a high quality production to it, but we&#8217;ll help each other get through that process.</p>\n\n\n\n<p>[00:27:43] <strong>Nathan Wrigley:</strong> I love the meta there. We&#8217;re learning to learn. That&#8217;s brilliant. The different formats that you do, actually no, I&#8217;ll come back to that in a moment. I&#8217;m going to ask about the way that your team meets, because we&#8217;re currently talking about people contributing their time, and you mentioned that you can go and do things like contribute in GitHub with comments and so on.</p>\n\n\n\n<p>But I&#8217;m just wondering if you became much more involved in the team and you were there regularly, not just committing a piece of content once in a while, but really digging into the team and trying to help out on a regular basis. It would be quite helpful to know what that might look like. Where do you hang out? Where do you do the work?</p>\n\n\n\n<p>[00:28:17] <strong>Courtney Robertson:</strong> Sure. So, forgive my American mindset about time, but on Tuesdays at noon Eastern time. On Thursdays at 7:30 AM Eastern or, oh, I forget exactly what time it is for Pooja, but she runs an APAC specific time zone meeting. And so it&#8217;s the same time and option available for both of these meetings. Those happen by the way, all in Slack, those are entirely Slack based chat messages, as you would find across the 20 now different WordPress teams. We conduct our meetings through Slack. We have coffee hours as a get to know folks session. Those are delightful to stop by and see. We&#8217;re running those Fridays at 9:00 AM Eastern. However, we are open to exploring alternative times for that.</p>\n\n\n\n<p>We&#8217;ve got some folks that are traveling that are our normals that help conduct these. So we&#8217;ll give it a few more weeks before we start looking into different time zones. We do those through Zoom. We find that that generally meets the most accessible needs and we have the accessibility team rep often join us too. So that&#8217;s delightful. And then you can find us, hopefully in the near future at a WordCamp close to you at a contributor day.</p>\n\n\n\n<p>[00:29:31] <strong>Nathan Wrigley:</strong> That would be nice.</p>\n\n\n\n<p>[00:29:32] <strong>Courtney Robertson:</strong> Yes.</p>\n\n\n\n<p>[00:29:33] <strong>Nathan Wrigley:</strong> Let&#8217;s hope that&#8217;s true. Now my understanding is that broadly speaking people fall into different types of learners. You may be kinesthetic, or you may be auditory or visual or what have you. That is going to inevitably lead to people, desiring different types of content. And you mentioned a moment ago, you called it learning paths, I think you said. What different formats have you got? I mean it may be that that is still to be explored. Maybe you&#8217;re going to invest time and effort into different things in the future, but whether you&#8217;ve got it live at the moment or whether it&#8217;s just a, an aspiration, tell us the thinking behind that.</p>\n\n\n\n<p>[00:30:06] <strong>Courtney Robertson:</strong> Yeah. Our content types, are lesson plans, workshops, courses, and social learning spaces. Our audience is quite vast, but then if you break it down into an individual, an individual may learn in different methods. So some folks really like videos. Some people really like to read, like it&#8217;s a book. And so our courses approach different learning styles.</p>\n\n\n\n<p>And the more that we can do that, the better. Our courses do suggest projects to extend upon what you&#8217;ve already learned. So often that would look like doing the work along with the course, and that would be delivered both in text and video form. And then having a suggested, now here&#8217;s a challenge to try on your own. To give you that hands-on experience without being guided. The more ways that we can continue to help cater to individual learning styles, the better.</p>\n\n\n\n<p>Also along those lines my teaching hat background comes in here. It really matters to me that we are available in the global space. And so that also looks like translation opportunities, because one of the things about learning styles is that, if you think about folks in, you and I both speak English. English second language individuals, that would be a student in a school whose first language was not English often needs a little extra support when they&#8217;re just beginning to be immersed English.</p>\n\n\n\n<p>And so, I don&#8217;t find it to be particularly reasonable or fair that somebody that is not primarily English is only presented training materials in English. We need a lot of support around getting the content available in as many languages as we possibly can. We also need then to help work on the initiatives that WordPress has to be multi-lingual.</p>\n\n\n\n<p>So at this time that&#8217;s on the roadmap, but it&#8217;s not until I think phase four in the Gutenberg project to be fully multilingual. So that presents a challenge then on Learn, because how do we make our courses available in different languages? We need some help.</p>\n\n\n\n<p>[00:32:08] <strong>Nathan Wrigley:</strong> Well, let&#8217;s hope that somebody listening to this is, uh, is going to step in and assist you with that. Just a thing, I may be jumping the gun here, and it may be something that you&#8217;re unable to talk about. You mentioned in our exchanges prior to recording that there was potentially in the future, some path towards certification. So I&#8217;m guessing, you know, you put the time in, and as a result, you are handed something in exchange to prove that you pass the test, if you like. You achieved what it was and you got through it all. Just tell us the thinking on that, even if none of it&#8217;s particularly concrete right now.</p>\n\n\n\n<p>[00:32:42] <strong>Courtney Robertson:</strong> Yeah. So this is a podcast for WP Tavern. If you&#8217;re interested in the history of WordPress entertaining the idea of certification, you may search the archives here. I will say that certification as we see it. I also had some questions about several years ago, I would say, but what changed my mind first and foremost was that when I was teaching in the bootcamp and I presented to my leaders, here&#8217;s what individuals need to be job ready, and here&#8217;s the timeframe that that could be delivered in and what would be adequate for the amount of each programming language, plus then how WordPress pulls that together. It wasn&#8217;t provided, it was a challenge then to get individuals placed for jobs.</p>\n\n\n\n<p>The resourcing for such material wasn&#8217;t readily available. So having a definitive here is what it would take to being basically job ready as a common industry accepted standard suddenly became a high priority in my mind. I realized, oh, if that was in place, it would be really easy to point to and say, here&#8217;s what folks need to be able to do. And here&#8217;s a pathway for how to learn that.</p>\n\n\n\n<p>So at this time we are not ready to begin starting a certification initiative. We are looking in quarter four of this year. So the last three months of 2022, of beginning, a discovery session. A discovery session means to, again, talk to folks about what they need, what their concerns are. Also look at other open source projects and see what worked and what didn&#8217;t work.</p>\n\n\n\n<p>I&#8217;ve been checking in with the folks that help form the certification over at Joomla. And I&#8217;m learning a bit about what has and has not worked for them. I&#8217;m keeping loose eyes on what Drupal is doing, but I think there&#8217;s something to learn from other open source initiatives that are not even about a content management system.</p>\n\n\n\n<p>So look at how do they do this? What have they learned? How would that potentially work for us? Would that work for us? What other concerns does the community have? So, disclaimer, folks. Yes, this is a hot topic. Yes, it&#8217;s had a history. We&#8217;re interested. We want to talk. That&#8217;s where we&#8217;re at at this time. We want to talk about it and the conversations happening starting around October of 2022.</p>\n\n\n\n<p>[00:34:59] <strong>Nathan Wrigley:</strong> Oh, a perfect time for us to release this then. You&#8217;ve got the people thinking about that in time for October. That&#8217;s fabulous. You mentioned earlier about resources for the learn project. And again, I don&#8217;t know if you&#8217;ve got an insight to deliver here. I&#8217;m just wondering how it is, how it is all funded essentially. Now you mentioned that your seconded from GoDaddy, forgive me the word wasn&#8217;t seconded it was whatever it was. GoDaddy provide you with the financial support so that you can lend your time to the project. What other resources are brought to bear. You mentioned that other people were seconded, there were volunteers and so on, but</p>\n\n\n\n<p>[00:35:37] <strong>Courtney Robertson:</strong> Yeah.</p>\n\n\n\n<p>[00:35:37] <strong>Nathan Wrigley:</strong> Is there anything else? Are there pots of money, which you can dip into provided by, I don&#8217;t know, sponsorship or different organizations who contribute to the project.</p>\n\n\n\n<p>[00:35:47] <strong>Courtney Robertson:</strong> Wouldn&#8217;t that be delightful if I just had unlimited money to use on this. Oh, where could we go? So our team does have some resources provided for our team. In addition to, there are contributors across multiple other organizations, I will say as well, that do periodically pop by for some contribution to the project as well.</p>\n\n\n\n<p>But we do have some resources. So a lot of teams in WordPress use Helpscout. Even Slack itself is a paid Slack instance, and I could be mistaken, but I believe that a lot of that financial work overhead is through Automattic. I would love to be corrected if so. We are using Sensei Pro, which is a learning management system. It is a plugin. The pro version just recently released, but that is owned by Automattic. Sensei has been an Automattic product for about 10 years. We do have an access through VideoPress. Should we need it? And VideoPress for WordPress TV is also how we embed our videos. So again, those two are provided through Automattic with Jetpack.</p>\n\n\n\n<p>Meetups that would run through WordCamp central. We recently received both WP Sandbox and Insta WP as options that we can use. So when somebody is going through a course, when we&#8217;re new to learning WordPress, the hardest challenge is to get a WordPress environment set up. And with both of these tools, we are able to, whether it is social learning spaces or courses or something to that effect. We&#8217;re able to very quickly get folks a single link that takes them to WordPress install. That&#8217;s got today&#8217;s theme, plugin and some demo content ready to go so they can get to work on doing the activity, not be stumped by how to set WordPress up. So those are fantastic resources that we do have available at this time.</p>\n\n\n\n<p>[00:37:30] <strong>Nathan Wrigley:</strong> Thank you very much. Is there anything else that I failed to ask you? Obviously, you know, you&#8217;ve really deeply embedded in this project and I&#8217;ve asked the questions that I wish to ask, but quite happy for you to tell us about something that I missed.</p>\n\n\n\n<p>[00:37:43] <strong>Courtney Robertson:</strong> Sure, I mentioned that we focused in early on, on just getting started using WordPress, but we make space for all of these other types of things that folks might want to learn how to do with WordPress. There&#8217;s really almost no limit, other than if we&#8217;re mentioning a plugin or a theme, keep it within WordPress dot org, so other people can access it and use it.</p>\n\n\n\n<p>But we do have some beginning workings of a developer content roadmap. I began forming this when I was planning what I needed to do at the front end dev bootcamp. I looked at it like at what point along the journey from installing WordPress and activating Hello Dolly to I&#8217;m going to build a multi-site WordPress instance, that power s thousands of sub-sites or something like that.</p>\n\n\n\n<p>How do you learn how to do all of these things? How do you begin learning? At what point do you learn APIs? What about build tools like Webpack. Those that are high into development with no, oh yeah, at some point I learned this and that, and what logically would happen with that?</p>\n\n\n\n<p>So we do have a higher level, how to learn everything from just getting started all the way through, I want you to do the most complex possible things available there. And I&#8217;m really excited that we will soon be joined by Jonathan Bossenger, as a developer educator. He is coming in again, sponsored by Automattic.</p>\n\n\n\n<p>And will be contributing developer oriented content. So that, that roadmap that I began laying down while at the bootcamp will hopefully come into play with creating more dev oriented content. If you&#8217;re interested in seeing what is everything in a logical order, again, challenge, we, we need dev resourcing to help develop the site as well here.</p>\n\n\n\n<p>So we have a pathway that is everything that we have made available. And it&#8217;s in a logical order, but it&#8217;s just a table at this time until we can get some more development on the site. So there&#8217;s a learn pathway link that I can provide. And then finally, again, the call-out is there, contribute, contribute.</p>\n\n\n\n<p>We love to partner with folks along the way. I know this is a lot. I&#8217;m coming in as a former second generation computer teacher. So I have a bit of a runway and I&#8217;ve been working with the project since 2013. We&#8217;ve talked about a lot today. It seems a lot of a lot. We&#8217;re happy to help slow it down and connect you with exactly where you need to go. Because again, our team is made up of a lot of folks that think like teachers.</p>\n\n\n\n<p>[00:40:16] <strong>Nathan Wrigley:</strong> In the course of this podcast, we&#8217;ve mentioned so much as you described, just to reiterate, if you&#8217;ve been listening to this podcast and you, you know, you&#8217;re maybe listening to it on your headphones whilst you&#8217;re driving the car or something like that. Don&#8217;t forget that the show notes will have all the links that Courtney&#8217;s provided and hopefully you&#8217;ll be able to get to the exact thing that piqued your interest. However Courtney, there&#8217;s one thing missing off those show notes, and that would be how we might contact you. If somebody has a need to speak to you on the back of this podcast, what&#8217;s the preferred way or ways of getting in touch?</p>\n\n\n\n<p>[00:40:51] <strong>Courtney Robertson:</strong> Yeah, so to help lighten the load, if it is specific to the training team or learn, please swing through the channel inside of make.wordpress.org/training. You&#8217;ll find our link to get to our Slack channel there. That helps the right folks get connected with you, so if it&#8217;s a general team question. If you would like to find me specifically courtneyr_dev on Twitter, Courtney Robertson on LinkedIn, courtneyr.dev is my website. You can find everywhere I am there.</p>\n\n\n\n<p>[00:41:19] <strong>Nathan Wrigley:</strong> Courtney Robertson thank you for joining us on the podcast today. I&#8217;ve really enjoyed it.</p>\n\n\n\n<p>[00:41:24] <strong>Courtney Robertson:</strong> Delightful, thanks for having me.</p>\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 11 May 2022 14:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"WordCamp Central: WordCamp Europe 2022 is just around the corner\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"https://central.wordcamp.org/?p=3147947\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"https://central.wordcamp.org/news/2022/05/wordcamp-europe-2022-is-just-around-the-corner/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2817:\"<p>Only a few weeks left to join the European WordPress Communities and celebrate the 10th anniversary of WCEU.</p>\n\n\n\n<p>Nearing WordCamp Europe 2022 &#8211; the first in-person flagship WordCamp since the pandemic, things are getting exciting backstage. </p>\n\n\n\n<p>Celebrating the 10th anniversary of WordCamp Europe makes WCEU 2022 the best way to welcome back in-person events. So, what are the things you can expect from WordCamp Europe 2022? We’re listing all the updates, so keep reading!</p>\n\n\n\n<h2>The Speakers are already announced</h2>\n\n\n\n<a href=\"https://central.wordcamp.org/files/2022/05/a80d3e34-d1b9-acb5-517b-679649bce52f.jpg\"><img /></a>\n\n\n\n<p>An amazing lineup of speakers covering topics such as Business, Design, Gutenberg, Development, Accessibility, Headless, and more have been announced. For details, find out more <a href=\"https://europe.wordcamp.org/2022/news/\">here</a>.</p>\n\n\n\n<h2>The Schedule is posted on the WCEU 2022 website</h2>\n\n\n\n<a href=\"https://central.wordcamp.org/files/2022/05/82037f4d-c46a-d54f-1a64-b0941c532787.jpg\"><img /></a>\n\n\n\n<p>After announcing a wide range of great speakers in the past few weeks, the full schedule of WCEU 2022 is now revealed. There will be 40+ exciting sessions &amp; workshops along with a fun and amazing After Party. Click <a href=\"https://europe.wordcamp.org/2022/schedule/\">here</a> if you can’t wait and want to check out the complete event schedule.</p>\n\n\n\n<h2>And the Contributor day is on!</h2>\n\n\n\n<a href=\"https://central.wordcamp.org/files/2022/05/96a88be8-1253-323b-2481-46de89879ef4.jpg\"><img /></a>\n\n\n\n<p>Contributor Day will take place, as usual, one day before the main WordCamp Europe event, on Thursday 2nd June 2022, at the same venue as the rest of the camp – the Super Bock Arena in Porto. It is a full day of contributing and networking with other passionate WordPressers! In order to participate at Contributor Day, please complete this <a href=\"https://europe.wordcamp.org/2022/contributor-day/\">registration form</a>.</p>\n\n\n\n<h2>HOORAY!</h2>\n\n\n\n<p>So only a few weeks to go before WordCamp Europe 2022.</p>\n\n\n\n<p>The organizing team behind the scenes of WordCamp Europe 2022 can&#8217;t wait to meet you! Everyone is giving their best efforts to make sure you will enjoy an amazing event.</p>\n\n\n\n<p><em><strong>WordCamp Europe 2022 takes place 2- 4 June in Porto, Portugal.</strong></em><br />For more information, check the <a rel=\"noreferrer noopener\" href=\"https://europe.wordcamp.org/2022\" target=\"_blank\">WCEU website</a>.</p>\n\n\n\n<p><strong>Fired up and ready to be a part of the WordCamp Europe family?</strong></p>\n\n\n\n<div class=\"wp-container-1 wp-block-buttons\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link\" href=\"https://europe.wordcamp.org/2022/tickets/\">Grab your ticket</a></div>\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 11 May 2022 08:13:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Timi Wahalahti\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"WPTavern: Catch FSE Is a Bold, Business-Friendly WordPress Block Theme\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=134226\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://wptavern.com/catch-fse-is-a-bold-business-friendly-wordpress-block-theme\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7710:\"<p>And another theme shop hops on the block bandwagon. Catch Themes&#8217; first block-based theme, <a href=\"https://wordpress.org/themes/catch-fse/\">Catch FSE</a>, landed on WordPress.org over the weekend.</p>\n\n\n\n<p>The company is one of the most prolific authors in the official WordPress theme directory, touting a <a href=\"https://wordpress.org/themes/author/catchthemes/\">total of 109 themes</a>. There are only a few others with such an impressive body of work, at least in sheer numbers. Averaging over 10 new releases each year for the last decade is no small feat, and that just accounts for the company&#8217;s free themes.</p>\n\n\n\n<p>At a time when WordPress is still in a transitioning phase between classic, PHP-based themes and those built entirely from blocks, the community needs leaders in the space pushing the project forward.</p>\n\n\n\n<p>With WordPress 6.0&#8217;s slew of features, I expect we will see more and more authors join the ride.</p>\n\n\n\n<p>When reviewing new themes, I typically install them a few days ahead of time and test them off and on. Then, I decide if they are worth sharing with the Tavern audience. However, in this case, I am going in blind. Well, not <em>entirely</em> blind. I am familiar enough with some of Catch Themes&#8217; past work to know the company has produced some well-designed projects. Plus, I had quickly peeked at the demo.</p>\n\n\n\n<p>My immediate reaction after installing and activating Catch FSE was disappointment. The homepage did not look like the theme&#8217;s screenshot or what was <a href=\"https://fse.catchthemes.com/catch-fse/\">shown in the demo</a>. Instead of the business-friendly layout I expected, I gazed upon a standard blog post listing.</p>\n\n\n\n<img />Default homepage blog posts.\n\n\n\n<p>This should not be happening in the block themes era.</p>\n\n\n\n<p>Theme authors are not entirely at fault for this problem. Those who have submitted their designs to WordPress.org have been conditioned over the years to do this. This was a necessity in the classic theme era because users did not have the same control as they do now over their homepages. The site editor gives them that freedom, and it also breaks the shackles that have been holding theme authors back for years.</p>\n\n\n\n<p>Now is the time to be bold. Now is the time for theme authors to put their signature on their work, showcasing their design skills with those custom homepages they have always wanted to provide out of the box. Now is the time to break free of those draconian guidelines from an era that block-based themes are leaving behind.</p>\n\n\n\n<p>Catch Themes, if you are reading this, I want to see a <code>front-page.html</code> template in version 2.0 that outputs the following:</p>\n\n\n\n<img />Homepage design from the Catch FSE demo.\n\n\n\n<p>Give users an immediate solution instead of forcing them to create a new page, select a template, and move into the template editor to customize it.</p>\n\n\n\n<p>A blog post listing is a perfectly acceptable default for a theme, and Catch FSE&#8217;s works well enough&#8212;<em>those gradient &#8220;read more&#8221; buttons are also sweet</em>. However, if the screenshot and demo showcase a custom homepage, that is what I expect to see upon activation. And, based on my somewhat educated guess, it is also what the average user will expect.</p>\n\n\n\n<p>After tinkering around with the theme for a while longer, I realized how well-designed it was. The typography made for an enjoyable reading experience. Each template was well laid out. The footer &#8220;widgets&#8221; even felt right. Catch FSE was suddenly making a beeline toward the top of my favorite themes list this year.</p>\n\n\n\n<p>And, I must take another moment to appreciate the gradient used for buttons in the theme, as shown in this screenshot of the About Us pattern:</p>\n\n\n\n<img />&#8220;About Us&#8221; block pattern.\n\n\n\n<p>Those who have followed me long enough know that I often dislike dark designs. Automattic&#8217;s Livro made me <a href=\"https://wptavern.com/automattics-livro-is-a-minimal-block-theme-for-writers\">rethink my position</a> earlier this year. With Catch FSE, I am moving beyond merely tolerating such designs to enjoying them. <em>Well, some of them. Let&#8217;s not get crazy.</em></p>\n\n\n\n<p>What Catch FSE does as well as any theme is offer a well-designed set of block patterns. In total, it ships 15 that users can pick and choose from.</p>\n\n\n\n<img />Inserting a call-to-action pattern in the page editor.\n\n\n\n<p>From a development perspective, other theme authors should take notes. Following the DRY principle, Catch FSE routinely reuses its own patterns in its templates and parts.</p>\n\n\n\n<p>The theme registers 10 block styles, but it is impossible to know what most of them do without trying them out first. The user-facing label simply reads &#8220;Theme Style&#8221; for eight of them. <em>What does that even mean? If it is <strong>the</strong> theme style, should it not be the default?</em></p>\n\n\n\n<p>Most are generally design variations for the various blocks they are attached to. They might alter the typography, colors, or other styles, as shown in the following screenshot of the Blockquote block with the &#8220;Theme Style&#8221; assigned to it:</p>\n\n\n\n<img />Assigning a custom style to the Blockquote block.\n\n\n\n<p>That is actually a well-designed Blockquote style, but I would have never known it was something I would want to use if I had not been digging. Custom block styles suffer from a bit of a discoverability problem by default, and cryptic names for them are doing users no favors.</p>\n\n\n\n<p>Most of the issues I had with the theme were around the comments list design. However, it is not yet using the new Comments Query Loop block shipping with WordPress 6.0. In a future release, I would like to see the author put more time into bringing it up to par with the rest of the theme&#8217;s design. At the moment, it feels like a feature that was tacked on as an afterthought.</p>\n\n\n\n<p>Catch FSE is a freemium theme with a commercial <a href=\"https://catchthemes.com/fse-pro-plugin/\">add-on plugin</a> that offers three custom blocks and 10 patterns. I like seeing the upsells focused purely on value-adds.</p>\n\n\n\n<p>I have often said that the next generation of freemium themes cannot be like the last. Developers will need to focus on enticing users with solutions to their problems instead of nickel-and-diming customers, locking necessary features behind a paywall. The block system is changing the game, and when most users can flesh out their site designs via the built-in WordPress site editor, the old-school upsells will not cut it.</p>\n\n\n\n<p>Turnkey, plug-n-play solutions are needed. I may be so far off-base that I am not even in the ballpark, but I foresee block patterns being a central part of that. Once commercial theme authors figure out how to market and build with these new tools, we will see an explosion of growth in the block-based themes space.</p>\n\n\n\n<p>Catch Themes&#8217; 10 commercial patterns represent a start, but I imagine the company will need to continue pushing limits to see a worthwhile return on its premium upsell. Now is the time for experimentation while the field is wide open.</p>\n\n\n\n<p><em>My biggest nit-pick?</em> The name.</p>\n\n\n\n<p><strong>Attention all developers:</strong> Can we stop naming themes &#8220;Something FSE&#8221; and &#8220;Guten Something&#8221;? It is confusing and makes it tough to remember which project is which. Take some time to come up with something that stands out in the crowd.</p>\n\n\n\n<p>Catch FSE is a bold and beautiful business-ready theme, but it needed a name to match its personality. I only hope folks remember it.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 11 May 2022 03:27:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"WPTavern: WPSiteSync Shuts Down, Commercial Extensions Now Available on GitHub\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=134205\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"https://wptavern.com/wpsitesync-shuts-down-commercial-extensions-now-available-on-github\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4898:\"<p><a href=\"https://wpsitesync.com/\">WPSiteSync</a>, a content syncing plugin from the team behind DesktopServer, has discontinued support for its free, core plugin and commercial extensions. The plugin lets users sync specific content, such as posts, pages, featured images, and taxonomies, without having to migrate the entire database. Commercial <a href=\"https://wpsitesync.com/downloads/\">extensions</a> allowed users to sync things like WooCommerce products, Gutenberg blocks, EDD product information, custom post types, Beaver Builder projects, and more.</p>\n\n\n\n<p>It has been nine months since the <a href=\"https://wordpress.org/plugins/wpsitesynccontent/\">WPSiteSync plugin</a> was updated and more than a year since a major release. After six years, the ServerPress team has published a statement explaining their reasons for shutting down:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>After a lot of consideration and discussion, we have concluded that we will no longer be updating WPSiteSync and its Premium Extensions. This was a difficult decision for us to make as we know that many of you rely on it in order to enhance your WordPress Workflow. The decision was made due to the fact that with each extension being dependent on the code of the plugin that it supports, we could not keep up with their changes as we enhanced our library, and frankly, there was not as much demand for it as we had hoped. Additionally, we found that our time supporting WPSiteSync took away from our ability to move our flagship product, DesktopServer, forward.</p></blockquote>\n\n\n\n<p>The ServerPress team plans to integrate some of WPSiteSync&#8217;s functionality into its DestopServer product and is making the current iteration of the plugin and all of its commercial extensions <a href=\"https://github.com/ServerPress\">available for free on GitHub</a>. </p>\n\n\n\n<p>PublishPress founder Steve Burge, whose business followed a similar monetization path, commented that WPSiteSync chose &#8220;an honorable and honest way to end the commercial life of a WordPress plugin.&#8221; He said his company considered a similar set of features &#8220;but it seemed as daunting as they describe.&#8221; </p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">This is an honorable and honest way to end the commercial life of a WordPress plugin: <a href=\"https://t.co/DQ1dKnjvMC\">https://t.co/DQ1dKnjvMC</a><br /><br />(We\'d considered a similar set of features for PublishPress, but it seemed as daunting as they describe)</p>&mdash; Steve Burge (@SteveJBurge) <a href=\"https://twitter.com/SteveJBurge/status/1523748197943848962?ref_src=twsrc%5Etfw\">May 9, 2022</a></blockquote>\n</div>\n\n\n\n<p>The free core with commercial extensions business model can work well, but it can also stretch a development team thin if they are also responsible for a flagship product on top of maintaining such a diverse set of extensions. Keeping up with changes in Gutenberg, WooCommerce, Beaver Builder, EDD, and many other fast-moving plugins is an ambitious endeavor. It&#8217;s easy to see how the support and maintenance of these extensions could become untenable.</p>\n\n\n\n<p>&#8220;Just as an example, the Advanced Custom Fields extension might take X number of hours to code and then they might make one small change in how it writes to the database and then our extension would lose its functionality,&#8221; ServerPress Operations Director Marc Benzakein told the Tavern. &#8220;This often meant that instead of continually sticking with a production schedule, we would have to change our focus to support the ACF plugin. The more plugins WPSiteSync supported, the more untenable it became and the more man-hours it took to support it.&#8221; </p>\n\n\n\n<p>Benzakein also said another reason ServerPress decided not to sell is because they are exploring the idea of approaching it from a more manageable direction, to have WPSiteSync features available as an integration into their other workflow tool. </p>\n\n\n\n<p>WPSiteSync has hovered at approximately 3,000 active installs for the past two years. Putting the plugin and extensions on GitHub gives WPSiteSync and its extensions the opportunity to be forked and supported by a new team with more incentive and resources. Shutting down may be disappointing for current users and customers, but, after so long without updates, it&#8217;s better that the software is officially released to the public for a chance at new life.</p>\n\n\n\n<p>Customers who purchased WPSiteSync&#8217;s &#8220;Premium Bundle&#8221; within the last 30 days can request a refund. </p>\n\n\n\n<p>&#8220;We will support our current customers as far as we can,&#8221; Benzakein said. &#8220;By and large the plugin and its extensions still work and the core plugin, which is available on the repo, will likely continue to work for some time as well.&#8221;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 10 May 2022 22:15:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:31;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"Post Status: Celebrate Small Businesses\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=97393\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"https://poststatus.com/celebrate-small-businesses/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1128:\"<p class=\"has-drop-cap\">There are 455,000,000+ websites running WordPress. There are a <em>lot</em> of small businesses supporting those sites! Our Post Status community represents a number of those companies and my guess is that most of you receiving our newsletter own or work with small businesses as well.<br /><br />In May we <a href=\"https://www.sba.gov/national-small-business-week\">celebrate small businesses</a> in the United States to honor everyone who is stepping out on that ledge. We can honor them by choosing to shop differently this month, by sending notes of thanks to those who support us, or by sharing our small business story with others. Would you like to share your small business story with us? We would love to add it to our blog this month! (Just comment here, <a href=\"https://poststatus.com/contact\">use our contact form</a>, or reach out on Twitter: <a href=\"https://twitter.com/LindseyMillerWP\">@LindseyMillerWP</a>.)<br /><br />I hope you take some time to recognize and celebrate others who are on this path with us.</p>\n\n\n\n<p class=\"has-text-align-right\"><strong>– Lindsey Miller</strong></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 10 May 2022 19:45:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Lindsey Miller\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"WordPress.org blog: WordPress 6.0 Release Candidate 2 (RC2) Now Available for Testing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=12840\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"https://wordpress.org/news/2022/05/wordpress-6-0-release-candidate-2-rc2-now-available-for-testing/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4786:\"<p>The next release candidate for WordPress 6.0 is now available!&nbsp;</p>\n\n\n\n<p>WordPress 6.0 is scheduled for release on May 24th, 2022 &#8211; just two weeks from today.</p>\n\n\n\n<p>“Release Candidate” means that this version of WordPress is ready for release! Since the WordPress ecosystem includes thousands of plugins and themes, it is important that everyone within the WordPress community check to see if anything was missed along the way. That means the project would love your help.</p>\n\n\n\n<p>Thank you to everyone who has contributed towards testing and logging issues to help make WordPress 6.0 stable (and awesome). WordPress still needs your help testing, especially theme and plugin developers.</p>\n\n\n\n<p>Since the RC1 release on May 3rd, 2022, there have been approximately 40 issues resolved in <a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.0\">Gutenberg</a> and <a href=\"https://core.trac.wordpress.org/query?status=accepted&status=closed&changetime=05%2F03%2F2022..05%2F10%2F2022&resolution=fixed&milestone=6.0&col=id&col=summary&col=status&col=milestone&col=owner&col=type&col=priority&order=id\">Trac</a>.</p>\n\n\n\n<h1>Installing RC2</h1>\n\n\n\n<p><strong>This version of the WordPress software is under development</strong>. Please do not install, run, and test this version of WordPress on a production or mission-critical website. Instead, it is recommended that you RC2 on a test server and site.&nbsp;</p>\n\n\n\n<p>You can test WordPress 6.0 RC2 in three ways:</p>\n\n\n\n<ul><li><strong>Option 1: </strong>Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the “Bleeding edge” channel and “Beta/RC Only” stream).</li></ul>\n\n\n\n<ul><li><strong>Option 2: </strong>Direct download the <a href=\"https://wordpress.org/wordpress-6.0-RC2.zip\">release candidate version here (zip)</a>.</li></ul>\n\n\n\n<ul><li><strong>Option 3:</strong> When using WP-CLI to upgrade from Beta 1, 2, 3, 4, or RC1 on a case-insensitive filesystem, please use the following command:<br /><code>wp core update --version=6.0-RC2</code></li></ul>\n\n\n\n<p>Additional information on the full <a href=\"https://make.wordpress.org/core/6-0/\">6.0 release cycle is available here</a>.</p>\n\n\n\n<p>Check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/dev-notes+6-0/\">6.0-related developer notes</a> in the coming weeks, which will detail all upcoming changes.</p>\n\n\n\n<h1>Plugin and Theme Developers</h1>\n\n\n\n<p>All plugin and theme developers should test their respective extensions against WordPress 6.0 RC2 and update the “<em>Tested up to”</em> version in their readme file to 6.0. If you find compatibility problems, please be sure to post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a> so that these items can be investigated further prior to the final release date of May 24th.</p>\n\n\n\n<p>Review the <a href=\"https://make.wordpress.org/core/2022/05/03/wordpress-6-0-field-guide/\"><em>WordPress 6.0 Field Guide</em></a> for more details on this release.</p>\n\n\n\n<h1>Translate WordPress</h1>\n\n\n\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help translate WordPress into more than 100 languages</a>.</p>\n\n\n\n<h1>How to Help Test WordPress</h1>\n\n\n\n<p>Testing for issues is critical for stabilizing a release throughout its development. Testing is also a great way to contribute to WordPress. If you are new to testing, check out this <a href=\"https://make.wordpress.org/test/2022/04/12/help-wanted-test-wordpress-6-0/\">detailed guide</a> that will walk you through how to get started.</p>\n\n\n\n<p>If you think you have run into an issue, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. If you are comfortable writing a reproducible bug report, you can <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>. This is also where you can find a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2>An RC2 Haiku for You</h2>\n\n\n\n<p>Anticipation<br />Sprinting toward G/A now<br />Please — test, translate — thanks!</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p>Thank you to the following contributors for collaborating on this post: <a href=\"https://profiles.wordpress.org/dansoschin/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>dansoschin</a>, <a href=\"https://profiles.wordpress.org/priethor/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>priethor</a>.&nbsp;&nbsp;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 10 May 2022 18:06:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Dan Soschin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"Do The Woo Community: The WooCommerce Roundtable Dives Into WordPress 6.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=71617\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://dothewoo.io/the-woocommerce-roundtable-dives-into-wordpress-6-0/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:420:\"<p>The WooCommerce panel talks about WordPress 6.0 with insights around the features, hosting, education, blocks and web development.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://dothewoo.io/the-woocommerce-roundtable-dives-into-wordpress-6-0/\">The WooCommerce Roundtable Dives Into WordPress 6.0</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 10 May 2022 10:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"WPTavern: WordPress 6.0 To Ship New Block Locking Feature\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=134165\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wptavern.com/wordpress-6-0-to-ship-new-block-locking-feature\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4458:\"<p>WordPress 6.0 has several new features that should make any extender happy about building on top of the platform. However, one of the more advanced tools is the ability to lock blocks, which can be used to prevent specific blocks from being moved or removed.</p>\n\n\n\n<p>The upcoming release includes a new &#8220;Lock&#8221; setting in the block toolbar&#8217;s options dropdown, as shown in the following screenshot:</p>\n\n\n\n<img />Selecting the Lock option from the block toolbar.\n\n\n\n<p>Once clicking the lock option, a modal appears that allows the user to disable movement of the block or prevent its removal:</p>\n\n\n\n<img />Block locking options.\n\n\n\n<p>Thus far, the best use case I have found for locking blocks via the UI is to stop accidental edits. Because users have access to the UI settings by default, they can disable the lock later if I need to move something around the layout or delete it.</p>\n\n\n\n<p>On the surface, this may not seem like a particularly robust feature. However, the real power of block locking is on the development end. Theme authors can use the new <code>lock</code> key to prevent end-users from moving or removing specific blocks in their templates.</p>\n\n\n\n<p>The following code is an example of a Group block that prevents both:</p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;!-- wp:group {\"lock\":{\"move\":true,\"remove\":true}} -->\n\n&lt;!-- /wp:group --></code></pre>\n\n\n\n<p>This can be especially handy for more complex layouts, such as a header and navigation area. Theme authors can now exert more control over the user experience in places where the design might easily be broken.</p>\n\n\n\n<p>Note that locking does not trickle down to nested blocks. Therefore, if an outer Group block is locked, users can still add, remove, or move anything inside it. Themers must also add a lock to any nested items they want to keep in place. There is an open ticket and some early design work around <a href=\"https://github.com/WordPress/gutenberg/issues/40069\">locking nested blocks</a>, but it will not land in WordPress 6.0.</p>\n\n\n\n<p>While this new feature offers more control for theme authors, it does not grant absolute power. Users can still unlock blocks by clicking the lock icon in the toolbar. However, as is the common saying in WordPress development circles, &#8220;There is a hook for that.&#8221;</p>\n\n\n\n<p>George Mamadashvili <a href=\"https://make.wordpress.org/core/2022/05/05/block-locking-settings-in-wordpress-6-0/\">covered using the <code>block_editor_settings_all</code> filter hook</a> to customize access. He provided a few examples of enabling or disabling the UI based on capabilities, user email, and context, such as the post type. There is no limit on how developers can use this hook. In general, capability checks are typically the best option when dealing with permissions.</p>\n\n\n\n<p>A developer could disable any user&#8217;s ability to move or remove blocks. In real-world cases, this should help agencies and freelancers create tightly-controlled experiences for their clients, especially when handing over access to the site editor.</p>\n\n\n\n<p>For developers who are building themes for release on WordPress.org, the Themes Team currently disallows using this hook. It falls under the &#8220;plugin territory&#8221; guideline. Last month, <a href=\"https://make.wordpress.org/themes/2022/04/26/themes-team-meeting-notes-april-26-2022/\">the team announced</a> that themes could lock blocks but not disable the user&#8217;s ability to unlock them.</p>\n\n\n\n<p>Block locking is not limited to block-based templates. It is also possible to lock things down within posts or pages. With a custom permissions setup, developers could extend it to give administrators and editors free rein while preventing authors and contributors from overriding locks, for example.</p>\n\n\n\n<p>By default, all blocks support locking. For plugin developers who want to opt-out of this feature, they can set the <code>supports.lock</code> key to <code>false</code> in their <code>block.json</code> file.</p>\n\n\n\n<p>I am eager to see new WordPress plugins built on this system. There is plenty of room to explore from site customization and editing flow angles.</p>\n\n\n\n<p>For further reading, check out Anne McCarthy&#8217;s post on creating <a href=\"https://make.wordpress.org/core/2022/02/09/core-editor-improvement-curated-experiences-with-locking-apis-theme-json/\">curated experiences with locking APIs and theme.json</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 10 May 2022 04:52:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"WPTavern: Ulysses App Updates WordPress Publishing to Use WP REST API\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=134148\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://wptavern.com/ulysses-app-updates-wordpress-publishing-to-use-wp-rest-api\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2701:\"<img />\n\n\n\n<p><a href=\"https://ulysses.app/\">Ulysses</a>, a writing app for Mac, iPad, and iPhone, has <a href=\"https://ulysses.app/releases/\">released</a> version 26. This is an important update for those who use the app to write and publish to WordPress. It adds support for more blogs and has simplified the process of setting them up using the WordPress REST API.</p>\n\n\n\n<p>Under the File > Publishing Preview menu, users with connected WordPress sites can see how their posts would look with the Twenty Twenty-One default theme. Here you can also manage external publishing accounts and add multiple WordPress blogs by authenticating for each one and authorizing the Ulysses app. (Accounts were previously available under a separate menu but are now found under the Publishing Previews screen.)</p>\n\n\n\n<img />\n\n\n\n<p>Ulysses has been around since 2003 &#8211; as long as WordPress, and has gained a loyal customer base over the past 19 years. It is run by a small team based in Leipzig, Germany. The app&#8217;s users are often attracted by its sophisticated support for writing projects, distraction-free writing interface, and clean design, which won an Apple Design Award in 2016. </p>\n\n\n\n<p>The app has supported publishing directly to WordPress since version 2.6, released in August 2016. Prior to this release, users had been exporting their posts as HTML or Markdown and pasting them into the WordPress editor. <a href=\"https://wptavern.com/ulysses-22-adds-wordpress-post-updating\">Version 22</a>, released in 2021, introduced Micro.blog publishing and WordPress post updating.</p>\n\n\n\n<p>In addition to the more modernized WordPress publishing integration, the latest update changes the publishing flow UI to feature dedicated buttons for quick access to publishing and the publishing preview. It also introduces a new counter on MacOS in the editor that shows the word count and pops out a little table of other stats on click, including characters, sentences, paragraphs, pages, and more.</p>\n\n\n\n<img />\n\n\n\n<p>Version 26 also fixes some sluggishness in the editor and eliminates a gaggle of annoying crash scenarios that users have been experiencing:</p>\n\n\n\n<ul id=\"block-4f7f6d69-01bc-4de2-961d-d09011b67cb4\"><li>Fixed a crash when sharing a sheet from Ulysses</li><li>Fixed a potential delay when typing in the editor</li><li>Fixed a rare crash on app launch</li><li>Fixed a crash when dragging a sheet from Mac to iPad using Universal Control</li></ul>\n\n\n\n<p>Ulysses users who want to find out what&#8217;s coming in upcoming releases can test new features before they come available by joining the app&#8217;s <a href=\"https://ulysses.app/beta/\">beta program</a> for iOS or macOS.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 09 May 2022 22:44:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"Gutenberg Times: WordPress 6.0 Devnotes, Sneak Peeks and articles – Weekend edition 214\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=21086\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"https://gutenbergtimes.com/wordpress-6-0-devnotes-sneak-peeks-and-articles-weekend-edition-214/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:11117:\"<p>Howdy, </p>\n\n\n\n<p>Today&#8217;s Weekend Edition is full of WordPress 6.0 developer notes  and articles. The  <a href=\"https://wordpress.org/news/2022/05/wordpress-6-0-release-candidate-1/\">Release Candidate 1 was released this week</a>. Now is a good time to test the new version with your themes, plugins and hosting. And <a href=\"https://wordpress.org/support/forum/alphabeta/\">report bugs and quirks</a>!  </p>\n\n\n\n<p>It&#8217;s already quite late, let&#8217;s get this on the road! </p>\n\n\n\n<p>Be well, and have a great next week! </p>\n\n\n\n<p>Yours,?<br />Birgit</p>\n\n\n\n\n\n<div class=\"wp-container-6 wp-block-group has-light-background-background-color has-background\"><div class=\"wp-block-group__inner-container\">\n<p><strong>?️ </strong> New episode: <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-65-gallery-block/\">Gutenberg Changelog #66 – Gutenberg 13.1, New Zealand, InnerBlocks</a> with co-hosts Birgit Pauli-Haack and Mary Job. Special Guest: Glen Davies</p>\n</div></div>\n\n\n\n<h2>Developer Notes for Block Themes and the Editor in WordPress 6.0</h2>\n\n\n\n<p>The <a href=\"https://make.wordpress.org/core/2022/05/03/wordpress-6-0-field-guide/\">WordPress 6.0 Field Guide</a> is published for your perusal. Grab&#8217; your favorite beverage and start reading. ? </p>\n\n\n\n<p>Here, as always, I collected the Dev Notes specifically related to the Block editor:</p>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2022/05/03/separator-block-updated-to-use-block-supports-color-settings/\">Separator block: Updated to use block supports color settings</a> </li><li><a href=\"https://make.wordpress.org/core/2022/05/03/support-for-handling-resolution-errors-for-editor-data-module/\">Support for handling resolution errors for Editor data module</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/05/updates-to-the-wordpress-create-block-templating-system/\">Updates to the @wordpress/create-block templating system</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/05/block-locking-settings-in-wordpress-6-0/\">Block Locking Settings in WordPress 6.0</a> </li></ul>\n\n\n\n<p><strong>Building Themes</strong> </p>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2022/05/03/page-creation-patterns-in-wordpress-6-0/\">Page creation patterns in WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/03/global-styles-variations-in-wordpress-6-0/\">Global Styles variations in WordPress 6.0</a> </li><li><a href=\"https://make.wordpress.org/core/2022/05/02/new-features-for-working-with-patterns-and-themes-in-wordpress-6-0/\">New features for working with patterns and themes in WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/02/theme-export-in-wordpress-6-0/\">Theme export in WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/03/block-markup-updates-for-image-quote-list-and-group-blocks/\">Block markup updates for image, quote, list and group blocks</a><br /></li></ul>\n\n\n\n<p>There is also the <a href=\"https://make.wordpress.org/core/2022/05/03/block-editor-miscellaneous-dev-notes-for-wordpress-6-0/\">Block Editor miscellaneous Dev Notes for WordPress 6.0</a> with the following short notes: </p>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2022/05/03/block-editor-miscellaneous-dev-notes-for-wordpress-6-0/#bottom-margin\">Removed bottom margin on LineHeightControl component</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/03/block-editor-miscellaneous-dev-notes-for-wordpress-6-0/#block-preservation\">Unrecognized block preservation</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/03/block-editor-miscellaneous-dev-notes-for-wordpress-6-0/#blocks-in-themes\">Registration of Blocks from within Themes</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/03/block-editor-miscellaneous-dev-notes-for-wordpress-6-0/#enable-post-comments\">Enable legacy Post Comments block</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/03/block-editor-miscellaneous-dev-notes-for-wordpress-6-0/#gallery-block\">Gallery block – Ability to adjust gap between images added</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/03/block-editor-miscellaneous-dev-notes-for-wordpress-6-0/#ancestor\">New&nbsp;<code>ancestor</code>&nbsp;property in&nbsp;<code>block.json</code></a></li><li><a href=\"https://make.wordpress.org/core/2022/05/03/block-editor-miscellaneous-dev-notes-for-wordpress-6-0/#media-entity\">Changes to media object returned from the WordPress data module</a>&nbsp;</li><li><a href=\"https://make.wordpress.org/core/2022/05/03/block-editor-miscellaneous-dev-notes-for-wordpress-6-0/#removed-apis\">Removed Deprecated APIs</a>&nbsp;</li></ul>\n\n\n\n<p>There are a ton of details to digest. Take you time. ? </p>\n\n\n\n\n<p><strong>&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg &#8211; Index 2022&#8221;</a>&nbsp;</strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test and Meta team from Jan. 2021 on. Updated by yours truly.  <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\"><em>The index 2020 is here</em></a></p>\n\n\n\n\n<h2>Block editor for content creators, site owners and site builders. </h2>\n\n\n\n<p>In the <strong><a href=\"https://wordpress.org/news/2022/05/episode-30-a-sneak-peek-at-wordpress-6-0/\">thirtieth episode of the WordPress Briefing,</a></strong> Executive Director <strong><a href=\"https://twitter.com/JosephaHaden\">Josepha Haden Chomphosy</a></strong> and special guest <strong><a href=\"https://twitter.com/critterverse\">Channing Ritter</a></strong> give listeners a sneak peek into the WordPress 6.0 release ahead of the Release Candidate 1 (RC1).</p>\n\n\n\n<p>Learn more about Style Switcher and the Style variations coming with the Twenty-Twenty-Two theme updates. Chomphosy and Ritter also touch on the Block locking UI features for site builders. Ritter is the design release lead for WordPress 6.0 and she talks about the experience. It&#8217;s particular interesting because, the position wasn&#8217;t assigned for a few release cycles. I also learned about the new feature tying the Slack #props channel to the WordPress profile. Listen in and have fun. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In<a href=\"https://stunningdigitalmarketing.com/episode-225-block-museum-and-wordpress-6-0/\"> his podcast&#8217;s 225th<strong>,</strong></a> <strong><a href=\"https://twitter.com/RobCairns\">Rob Cairns</a></strong> sits down with <strong>Anne McCarthy </strong>of Automattic to talk about her <a href=\"https://gutenbergtimes.com/introducing-the-museum-of-block-art-moba/\">Block Museum project</a> and the road to WordPress 6.0. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><a href=\"https://twitter.com/carlodaniele\"><strong>Carlo Daniele</strong></a> did a deep dive into all the features coming to WordPress 6.0 for Kinsta Blog: <strong><a href=\"https://kinsta.com/blog/wordpress-6-0/\">What’s New in WordPress 6.0: New Blocks, Style Switching, Template Editing, Webfonts API, and Much More</a></strong>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>For a less technical overview and more visual details, head on over to WPBeginner&#8217;s post: <a href=\"https://www.wpbeginner.com/news/whats-coming-in-wordpress-6-0-features-and-screenshots/\"><strong>What’s Coming in WordPress 6.0 (Features and Screenshots)</strong></a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<h2>Upcoming WordPress Social Learning Meetups</h2>\n\n\n\n<p><strong>May 9, 2022 3am EDT/ 7am UTC</strong><br /><a href=\"https://www.meetup.com/wordpress-social-learning/events/285413699/\"><strong>Showcasing Content with Query Loops</strong></a>&nbsp;w/ Wes Theron</p>\n\n\n\n<p><strong>May 12, 2022 &#8211; 2pm EDT / 18:00 UTC</strong><br /><a href=\"https://www.meetup.com/wordpress-social-learning/events/285518274/\"><strong>Builder Basics: Working with Templates in Full Site Editing (Part 2)</strong></a> w/ Nick Diego</p>\n\n\n\n<p><strong>May 18, 2022 &#8211; 6 pm EDT / 22:00 UTC</strong><br /><strong><a href=\"https://www.meetup.com/wordpress-social-learning/events/285518331/\">Sticky Styling: Getting Colors, Fonts, and Sizes to Stick</a></strong> w/ Sarah Snow</p>\n\n\n\n<p><strong>May 19, 2022 5pm EDT / 21:00 UTC</strong><br /><a href=\"https://www.meetup.com/wordpress-social-learning/events/285412812/\"><strong>Using the Navigation Block</strong></a>&nbsp;w/ Wes Theron</p>\n\n\n\n<p><strong>May 19, 2022 &#8211; 2pm EDT / 18:00 UTC</strong><br /><strong><a href=\"https://www.meetup.com/wordpress-social-learning/events/285518331/\">Builder Basics: Working with Templates in Full Site Editing (Part 3</a></strong><a href=\"https://www.meetup.com/wordpress-social-learning/events/285518274/\"><strong>)</strong></a> w/ Nick Diego</p>\n\n\n\n<p><strong>May 25, 2022 &#8211; 7pm EDT / 23:00 UTC </strong><br /><strong><a href=\"https://www.meetup.com/wordpress-social-learning/events/285577455/\">Design With Me: Create a Simple Website for your Small Business</a></strong> w/ Sarah Snow</p>\n\n\n\n\n<p>Featured Image: &#8220;<a href=\"https://www.flickr.com/photos/9322302@N03/1886898013\" target=\"_blank\" rel=\"noreferrer noopener\">Brick</a>&#8221;&nbsp;by&nbsp;<a href=\"https://www.flickr.com/photos/9322302@N03\" target=\"_blank\" rel=\"noreferrer noopener\">marv1nalon3</a>&nbsp;is marked with&nbsp;<a href=\"https://creativecommons.org/licenses/by-nc-sa/2.0/?ref=openverse\" target=\"_blank\" rel=\"noreferrer noopener\">CC BY-NC-SA 2.0</a>. found on <a href=\"https://wordpress.org/openverse/\">Openverse</a></p>\n\n\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-left\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\n\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\"><br />Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too and won&#8217;t give your email address to anyone except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 07 May 2022 23:49:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"WPTavern: How To Build Coupon Cards With WordPress Blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=134129\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wptavern.com/how-to-build-coupon-cards-with-wordpress-blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5378:\"<p class=\"has-drop-cap\">Last year, I designed several patterns for showcasing coupon codes on a site. They were part of a larger theme project that I never finished. However, I had a ton of fun playing around with variations. Disliking them withering away on my laptop&#8217;s hard drive, I thought I would share them with the Tavern audience.</p>\n\n\n\n<p>The base coupon card looks like the following:</p>\n\n\n\n<img />\n\n\n\n<p>When I designed it and the others, I had Christmas on my mind (if that was not obvious from the screenshot). Of course, I am always thinking about the holiday, usually starting my shopping by at least July each year.</p>\n\n\n\n<p>Other than the image, I intentionally left most of the design generic so that it easily applies to other holidays and events.</p>\n\n\n\n<p>This tutorial in the <a href=\"https://wptavern.com/category/building-with-blocks\">Building with Blocks</a> series will walk you through each step of creating custom coupon cards from the editor. I will also share a couple of ideas for variations at the end.</p>\n\n\n\n<h2>Step 1: Adding a Group Block</h2>\n\n\n\n<img />Adding a Group block with custom background and border.\n\n\n\n<p>As with most patterns, you should start with a container-type block. For the coupon card, begin by inserting a Group. You are free to personalize this however you want. However, to use the same layout in the tutorial, you should at least set the block&#8217;s padding to <code>0px</code> and block spacing option to <code>0px</code>. Those need to be zeroed out for the rest of the design to work.</p>\n\n\n\n<p>I adjusted my Group block to have a light gray background color. Then, I added a <code>4px</code> dashed border and an <code>8px</code> border-radius. Each of these design tools is available in the block inspector in the sidebar panel. Have a little fun with colors and other settings until you find something you like.</p>\n\n\n\n<h2>Step 2: Add an Image</h2>\n\n\n\n<img />Inserting an Image block into the Group.\n\n\n\n<p>This step is straightforward. Insert an Image block inside of the Group from step #1. There are no particular settings required.</p>\n\n\n\n<p>Of course, you should link it to something via the insert-link button in the toolbar. <em>You are presumably selling a product and want folks to click on it.</em></p>\n\n\n\n<h2>Step 3: Add Content Group</h2>\n\n\n\n<img />Adding a nested Group block.\n\n\n\n<p>This should be another simple step. Below the Image block from step #2, add a new Group. This will house the &#8220;content&#8221; you will add in step #4.</p>\n\n\n\n<p>The most crucial setting for this block is to add padding via the block design tools in the sidebar panel. I opted for <code>2rem</code> to match my theme. Remember that you zeroed out the padding in the outer Group in step #1. Now, you need to add some to keep the content from butting against the side of the container.</p>\n\n\n\n<h2>Step 4: Add Content</h2>\n\n\n\n<img />Adding the sales pitch.\n\n\n\n<p>With the Group block in place from step #3, you have a new freeform area to throw in your sales pitch to potential customers. This can be as simple as a Heading followed by a Paragraph or something much more complex. It is probably best to keep it short and on point.</p>\n\n\n\n<h2>Step 5: Coupon Code Row</h2>\n\n\n\n<img />Inserting a Row block for coupon code section.\n\n\n\n<p>To highlight the coupon code, add a new Row block below the Group block added in step #3. This allows you to add a section for the code and expiration date in the next step.</p>\n\n\n\n<p>Select the &#8220;space between items&#8221; option for the justification control. This setting pushes each nested block away from the other.</p>\n\n\n\n<p>Then, select a custom background color. This should automatically give padding to the Row block. If you opt out of setting a color, you should manually set the padding to match the Group block above it.</p>\n\n\n\n<h2>Step 6: Add Code and Expiration</h2>\n\n\n\n<img />Custom coupon code and expiration date.\n\n\n\n<p>The final step is to add two Paragraph blocks into the Row container. The first should read something like &#8220;Coupon: XMAS2022,&#8221; and the second should be &#8220;Expires: December 31.&#8221;</p>\n\n\n\n<p>Of course, it is your card, so have fun customizing it.</p>\n\n\n\n<h2>Variations</h2>\n\n\n\n<p>The wonderful thing about the WordPress block editor is there are so many ways that users can modify the output of a set of blocks like the above. Something as simple as changing the colors can give you an entirely different look. And, by rearranging a block or two, you can craft something uniquely your own.</p>\n\n\n\n<p>One of the easiest ways of customizing the coupon code above is by throwing in a few emoji, as shown in the following screenshot:</p>\n\n\n\n<img />Emoji variation.\n\n\n\n<p>OK. I was having a bit of fun with that. On a more serious note, there are many ways to tinker with the formula and create something new.</p>\n\n\n\n<p>It took me only a few moments to merge steps #2 and #4 (skipping step #3) from earlier to create the following:</p>\n\n\n\n<img />Media &amp; Text variation.\n\n\n\n<p>That is a Media &amp; Text block in the mix. I will leave you with the challenge of recreating this variation without a complete walkthrough. If you get stuck, check out my <a href=\"https://wptavern.com/how-to-build-book-and-book-review-cards-with-wordpress-blocks\">previous tutorial</a>, which covers Media &amp; Text extensively.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 07 May 2022 02:39:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"Post Status: BobWP’s Woo Snippet for the Week of May 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=97145\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://poststatus.com/bobwps-woo-snippet-for-the-week-of-may-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3683:\"<div class=\"has-background has-theme-palette-8-background-color wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">WooCommerce RC1 and RC2 • GetEllipsis search volume trends report shows growth for Woo • Negative security perceptions • Remkus de Vries on burnout and making life changes.  </p></div>\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_215fb5-9b\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<p class=\"has-drop-cap\">Over at <strong>WooCommerce</strong> Core, <a href=\"https://developer.woocommerce.com/2022/05/04/woocommerce-6-5-rc-2/\">both the RC1 and RC2 for 6.5 came out this week</a> in preparation for the May 10th final release. </p>\n\n\n\n<p><strong>Alex Denning</strong> published <a href=\"https://getellipsis.com/blog/105m-searched-wordpress-terms/\">his latest analysis on WordPress and WooCommerce search volumes</a> for <strong>Get Ellipsis</strong>. WordPress search dipped a bit in Q1 of 2022, but WooCommerce searches took a leap upwards. Get Ellipsis looked at 10K searches for WooCommerce terms and found monthly searches were up 12.0% year-on-year, which they note is double growth. </p>\n\n\n\n<p>Take a look at <a href=\"https://www.ecommercetimes.com/story/third-party-risk-could-cost-e-commerce-sites-millions-176618.html\">Third-Party Risks Could Cost E-Commerce Sites Millions</a> from <strong>Ecommerce Times</strong>. Their assessment is aimed at the broader ecommerce space, but the topic is applicable to anyone with a site using third-party services with security and liability concerns. Buried in the post they also mention Woo — oddly placing it in the context of open source and linking both with &#8220;small websites&#8221; especially susceptible to unaddressed security vulnerabilities. In several respects, it\'s <a href=\"https://poststatus.com/finding-the-upside-in-wordpress-security/\">a highly inaccurate view that needs to be changed</a>.</p>\n\n\n\n<p>And over at <strong>Do the Woo</strong> we have <a href=\"https://dothewoo.io/listening-to-yourself-when-agency-life-calls-you-back/\">a great conversation</a> with <strong>Remkus de Vries</strong> around his recent decision to reboot his agency and go back to being at the helm of his own ship. We learned more about his earlier transition resulting from burnout after running his own business <em>and</em> deciding to join the team at <strong>Yoast</strong> and <strong>Boltserve</strong>. But listening to himself more over the last several months has pointed him back to agency life. Don\'t forget to listen to yourself for your own needs — you can pay a little now or pay a lot more later!</p>\n\n\n\n<div class=\"wp-container-11 wp-block-group has-theme-palette-8-background-color has-background\"><div class=\"wp-block-group__inner-container\">\n<p><strong>Get the Woo Snippet and more in our weekly WordPress community news digest</strong>: Post Status\' <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> — covering the WordPress and WooCommerce news plus significant writing and podcast episodes from the WordPress community and beyond. It\'s all in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f48c.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n\n\n\n<p>And don\'t miss <strong>the latest updates from the people making WordPress</strong>. We\'ve got you covered with <a href=\"https://poststatus.com/make-wordpress/\">This Week at WordPress.org</a>. <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/2699.png\" alt=\"⚙\" class=\"wp-smiley\" /> Now with a new Five for the Future section!</p>\n</div></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 06 May 2022 16:31:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:39;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"Post Status: Post Status Notes #497\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=96899\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"https://poststatus.com/post-status-notes-497/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:13916:\"<div class=\"wp-container-9 wp-block-group has-theme-palette-8-background-color has-background\"><div class=\"wp-block-group__inner-container\"><div class=\"wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">WordPress is 19! • WP 6.0 news and Beta 4 release. • JetPack 10.9 • BuddyPress Rewrites 1.1.0 • Simple Local Avatars 2.3.0 • InMotion funds WCUS scholarships • RSS and Blogging FTW • Wishlist Member acquired • New leadership team at Yoast • and the rest of your weekly WP news roundup! </p></div></div></div>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_f5fe16-0a\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<h2 id=\"h-wordpress-6-0-news\">WordPress 6.0 News</h2>\n\n\n\n<p><strong>WordPress 6.0 Beta </strong>4 is <a href=\"https://wordpress.org/news/2022/05/wordpress-6-0-beta-4/\">available for testing</a> with the final release still planned for May 24, 2022.</p>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_d1e0d5-c8\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<p>With the release of <strong>WordPress 6.0</strong> fast approaching, developers should bookmark and examine <a href=\"https://make.wordpress.org/core/2022/05/03/wordpress-6-0-field-guide/\">the newly released WordPress 6.0 Field Guide</a> — a summary of the enhancements and additions coming to core. The 6.0 release includes&nbsp;<a href=\"https://core.trac.wordpress.org/query?status=closed&type=defect+(bug)&milestone=6.0&group=component&col=id&col=summary&col=type&col=owner&col=priority&col=component&col=version&order=priority\">131</a>&nbsp;bug fixes and&nbsp;<a href=\"https://core.trac.wordpress.org/query?status=closed&type=enhancement&type=feature+request&milestone=6.0&max=500&col=id&col=summary&col=type&col=status&col=milestone&col=owner&col=priority&order=priority\">97</a>&nbsp;enhancements or feature requests. Two items of note:</p>\n\n\n\n<ul><li>WordPress is now <a href=\"https://make.wordpress.org/core/2022/05/02/media-storing-file-size-as-part-of-metadata/\">storing file size as part of the metadata</a>.  </li><li>A new filter that <a href=\"https://make.wordpress.org/core/2022/05/03/miscellaneous-dev-notes-for-wordpress-6-0/\">can modify or replace the description of a plugin</a> on the <strong>Plugins &gt; Add New</strong> screen. </li></ul>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_aad85c-e8\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<p class=\"has-theme-palette-8-background-color has-background\">The <a href=\"https://thephp.foundation/blog/2022/05/02/the-php-foundation-update-april-2022/\">April 2022 PHP Foundation Update</a> is available now. It always has lots of PHP news important to WordPress but outside the community\'s often too-narrow &#8220;bubble&#8221; of concern. If you\'d like to get up to speed, <strong>Tonya Mork</strong> and <strong>Carl Alexander</strong> recently sat down with <strong>David Bisset</strong> to cover <a href=\"https://poststatus.com/post-status-comments-no-6-getting-up-to-speed-on-php-news/\">the major PHP news you need to know</a>.</p>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_1e6dbd-4c\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<h2>Giving Back Big!</h2>\n\n\n\n<p>Kudos to <strong>InMotion Hosting</strong> for <a href=\"https://www.inmotionhosting.com/blog/wordcamp-us-2022-diversity-speaker/\">committing to five travel scholarships</a> of $1500 for WordCamp US. Two are reserved for the diversity speaker program, and three are for people who have never attended a WordCamp. </p>\n\n\n\n<p>InMotion mentions they are following <a href=\"https://masterwp.com/wordcamp-us-2022-sponsorship/\">MasterWP\'s example</a> — that company is funding travel for up to six speakers, organizers, or volunteers. You can <a href=\"https://www.gofundme.com/f/contribute-to-masterwps-wordcamp-sponsorships\">add to the fund as an individual</a>.</p>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_9fb53f-83\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<p class=\"has-theme-palette-8-background-color has-background\"><strong>Olivia Bisset</strong> (with <strong>David Bisset</strong>) has launched <a href=\"https://wp19.day\">wp19day</a> — a celebration the 19th anniversary of WordPress which is happening on <strong>May 27th</strong>. <strong>Post Status</strong> is helping out — and you can too by submitting your <a href=\"https://wp19.day\">words, short videos, or photos</a> to be displayed on the site and tweeted by <a href=\"http://twitter.com/wp19day\">@wp19day</a>. The site will also monitor Twitter for activity as the date gets closer. Use the hashtags <code>#wp19</code> and <code>#wp19day</code>.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Thank you to <a href=\"https://twitter.com/JJJ?ref_src=twsrc%5Etfw\">@JJJ</a> for sharing your thoughts on <a href=\"https://twitter.com/hashtag/WordPress?src=hash&ref_src=twsrc%5Etfw\">#WordPress</a> for <a href=\"https://twitter.com/hashtag/wp19day?src=hash&ref_src=twsrc%5Etfw\">#wp19day</a>. <br /><br />Anyone can enter a submission quote or short video at <a href=\"https://t.co/rx1iUaxbFH\">https://t.co/rx1iUaxbFH</a> <a href=\"https://t.co/Cty5BLFVJ5\">pic.twitter.com/Cty5BLFVJ5</a></p>&mdash; wp19day (@wp19day) <a href=\"https://twitter.com/wp19day/status/1522213776077979648?ref_src=twsrc%5Etfw\">May 5, 2022</a></blockquote>\n</div>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_34c43a-06\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<h2>Notable Plugin Updates</h2>\n\n\n\n<p>This week saw <a href=\"https://memberium.com/wishlist-announcement/\">another WordPress acquisition</a>. The <strong>Wishlist Member</strong> plugin and its team are being acquired by&nbsp;<strong>Micah Mitchell</strong> and brought under the <strong>Membershipper</strong> brand. Also recently <strong>James Kemp</strong>, founder of <a href=\"https://iconicwp.com/\">Iconic</a>, acquired <a href=\"https://getreplybox.com/\">ReplyBox</a> which a privacy-focused comment system that has a WordPress plugin.</p>\n\n\n\n<p>The latest version of <strong>JetPack</strong> (10.9) will allow you to <a href=\"https://jetpack.com/blog/jetpack-10-9-share-videos-directly-with-your-site-members/\">share private videos with your site members</a>.</p>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_8abeb8-e9\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<p>The first maintenance release of <strong>BP Rewrites</strong> (1.1.0) — the <strong>BuddyPress</strong> add-on that gives you the power to control every BuddyPress<strong>&#8211;</strong>generated URL — <a href=\"https://buddypress.org/2022/05/bp-rewrites-1-1-0-maintenance-release/\">is now ready for download</a>.</p>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_bac61d-75\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<p>Here\'s the 2.3.0 release for <a href=\"https://github.com/10up/simple-local-avatars\"><strong>Simple Local Avatars</strong></a> from <strong>10up</strong> that adds an avatar upload field to user profiles. It\'s new to <strong>Github</strong> but has been available <a href=\"https://wordpress.org/plugins/simple-local-avatars/\">in the .org repo</a> for over a decade as one of 10up\'s very useful, very small, very free plugins originally created by <strong>Jake Goldman</strong>. </p>\n\n\n\n<p>The latest release adds <a href=\"https://wordpress.org/plugins/simple-local-avatars/#developers\">a lot of nice fixes and enhancements</a> contributed by Faisal Alvi and many othe 10up team members.</p>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_e8c5ab-de\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<p class=\"has-theme-palette-8-background-color has-background\"><strong>Yoast</strong> has <a href=\"https://yoast.com/meet-yoasts-new-leadership-team/\">a new leadership team</a>: <strong>Thijs de Valk</strong> (CEO), <strong>Chaya Oosterbroek</strong> (COO), <strong>Marieke van de Rakt</strong> (Head of Strategy), <strong>Inge Ariëns </strong>(Head of Marketing), <strong>Taco Verdonschot</strong> (Head of Relations), <strong>Irene Strikkers</strong> (Head of Research & Development) and <strong>Herre Groen</strong> (Head of Technology).</p>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_7eedc0-c8\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<h2>Worthy Projects, Maintainers Needed </h2>\n\n\n\n<p>Here\'s <a href=\"https://twitter.com/wprigio/status/1522335333597147136\">a nice reminder</a> from <strong>WP Rig</strong> that they are still on the lookout for more maintainers to join the team. The WP Rig project is a progressive theme development rig for WordPress that was started nearly two years ago. <strong>Morten Rand-Hendriksen</strong> has more details <a href=\"https://github.com/wprig/wprig/issues/618\">on this Github ticket</a>. </p>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_5c0d89-6b\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<p><strong>Tom Critchlow</strong> has some good thoughts on how we can increase the &#8220;surface area&#8221; of blogging <a href=\"https://tomcritchlow.com/2022/04/21/new-rss/\">from OPML and RSS to personal feeds</a>. <strong>Chris Coyier</strong> also <a href=\"https://chriscoyier.net/2022/04/29/rss-3/\">shared his thoughts on RSS</a> and how we can support a &#8220;slow social network&#8221; with personal sites.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>How is all this social? It’s just slow social. If you want to respond to me, publish something linking to what I said. If I want to respond to you, I publish something linking to what you wrote. Old school. Good school. It’s high-effort, but I think the required effort is a positive thing for a social network. Forces you to think more. I do kinda like the low-effort-ness of just a quick “like”, but hey, RSS readers support that in the form of stars, and mine are even <a href=\"https://feedbin.com/starred/56d6b0fe68e5efd3d447fd5bf328a57e.xml\">also syndicated</a>.</p></blockquote>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_71cd44-70\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<h2 id=\"h-good-things-shared\">Good Things Shared</h2>\n\n\n\n<p class=\"has-theme-palette-8-background-color has-background\">We\'re loving this <a href=\"https://developers.googleblog.com/2022/04/what-is-black-and-white-and-read-all.html\">new black and white <strong>Noto emoji font</strong></a> from <strong>Google</strong>.</p>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_46b758-eb\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<p><strong>Alex Denning</strong> notes <a href=\"https://getellipsis.com/blog/105m-searched-wordpress-terms/\">that searches for WordPress keywords</a> are up 7.4% year on year, and <strong>WooCommerce</strong> searches are up 12.0%. 2021 Q4 &#8220;rallied significantly&#8221; and brought &#8220;the largest volume of search traffic for WordPress we’ve seen yet.&#8221;  Interest &#8220;in themes has found its middle ground.&#8221;</p>\n\n\n\n<p>Going by search traffic alone isn\'t a perfect metric —like market share numbers from <strong>W3C Techs</strong> — but it\'s another indicator to keep an eye on.</p>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_3b4666-df\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<p><strong>WPCampus</strong> now has a <strong>Learning Library</strong> — <a href=\"https://www.wpcampus.org/learning/library/\">a growing collection of slides, videos, and discussions</a> of <strong>WPCampus</strong> conference sessions. Thanks to the members of the <strong>WPCampus</strong> community for sharing this valuable resource!</p>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_057bb2-d9\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"wp-container-10 wp-block-group has-theme-palette-7-background-color has-background\"><div class=\"wp-block-group__inner-container\">\n<p>David\'s got the <a href=\"https://poststatus.com/wordpress-podcast-and-video-picks-for-the-week-of-may-1/\">WordPress Podcast and Video Picks for the Week of May 1</a>. <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f3a7.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n\n\n\n<p>And don\'t miss <strong>the latest updates from the people making WordPress</strong>. We\'ve got you covered with <a href=\"https://poststatus.com/make-wordpress/\">This Week at WordPress.org</a>. <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/2699.png\" alt=\"⚙\" class=\"wp-smiley\" /> Now with a new Five for the Future section! </p>\n\n\n\n<p><strong>Get all this and more in our weekly WordPress community news digest</strong> — Post Status\' <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> — covering the WordPress and WooCommerce news plus significant writing and podcast episodes from the WordPress community and beyond. It\'s all in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f48c.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n</div></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 06 May 2022 15:38:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"David Bisset\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"Post Status: WordPress Podcast and Video Picks for the Week of May 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=96901\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://poststatus.com/wordpress-podcast-and-video-picks-for-the-week-of-may-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3810:\"<div class=\"wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">It\'s <strong>David Bisset</strong>&#8216;s weekly WordPress podcast and video roundup! This week we have <strong>Ines van Dijk</strong> on <strong>Women in WP</strong>, <strong>An Event Apart</strong> on <strong>The ShopTalk Show</strong>, <strong>Heather Brunner</strong> on <strong>Content is for Closers</strong>, UX and design on <strong>WP Builds</strong>, <strong>Joe Casabona</strong> on the Tavern\'s <strong>Jukebox</strong>, <strong>Josepha Chomphosy and Channing Ritter</strong> the <strong>WordPress Briefing</strong>, <strong>Syed Balkhi</strong> on <strong>The Gamechangers</strong>, and <strong>Dave Smith</strong> on key block editor features coming to <strong>WordPress 6.0</strong>. </p></div>\n\n\n<h2 id=\"h-my-podcast-picks\">My Podcast Picks <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f399.png\" alt=\"?\" class=\"wp-smiley\" /></h2>\n\n\n\n<ul><li><strong>Women in WP</strong>: Advice from <strong>Ines van Dijk</strong> <a href=\"https://womeninwp.com/podcast/082-ines-van-dijk-providing-quality-support-to-end-users/\">on providing quality support</a> to end users.</li><li><strong>ShopTalk Show:</strong> Chris and Dave <a href=\"https://shoptalkshow.com/513/\">answer questions about CSS and more</a> live from <strong>An Event Apart</strong>.</li><li><strong>Content is for Closers:</strong> <strong>Heather Brunner</strong>, the CEO of <strong>WP Engine</strong>, <a href=\"https://www.contentisforclosers.com/podcast/platforming-different-voices/\">shares how she has learned to lean into her unique abilities</a>, in addition to the tactical ideas that WP Engine uses to practically promote diversity.</li><li><strong>WP Builds:</strong> Nathan and David <a href=\"https://wpbuilds.com/2022/05/05/277-user-experience-and-user-interface/\">talk about user experience</a> in the design process.</li><li><strong>WP Tavern Jukebox:</strong> <strong>Joe Casabona</strong> explains why WordPress <a href=\"https://wptavern.com/podcast/25-joe-casabona-on-why-wordpress-is-a-great-choice-for-your-podcast\">is a good choice for hosting your podcast</a>.</li><li><strong>WordPress Briefing</strong>: <strong>Josepha Haden Chomphosy</strong> and <strong>Channing Ritter</strong> <a href=\"https://wordpress.org/news/2022/05/episode-30-a-sneak-peek-at-wordpress-6-0/\">offer a sneak peek</a> into <strong>WordPress 6.0</strong>.</li></ul>\n\n\n\n<h2 id=\"h-my-video-pick\">My Video Pick <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f4fa.png\" alt=\"?\" class=\"wp-smiley\" /></h2>\n\n\n\n<ul><li><strong>WordPress 6.0 Features in Four Minutes: Dave Smith</strong> <a href=\"https://www.youtube.com/watch?v=09affdqg0-E\">highlights some of the key block editor features</a> coming in <strong>WordPress 6.0</strong>.</li><li><strong>The Gamechangers</strong>: <strong>Syed Balkhi</strong> talks about <a href=\"https://www.youtube.com/watch?v=S0bdxdgByRA\">how he got into the WordPress acquisitions game</a>.</li></ul>\n\n\n\n<div class=\"wp-container-13 wp-block-group has-theme-palette-8-background-color has-background\"><div class=\"wp-block-group__inner-container\">\n<p><strong>Get our weekly WordPress community news digest</strong> — Post Status\' <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> — also available in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f48c.png\" alt=\"?\" class=\"wp-smiley\" />  </p>\n\n\n\n<p>And don\'t miss <strong>the latest updates from the people making WordPress</strong>. We\'ve got you covered with <a href=\"https://poststatus.com/make-wordpress/\">This Week at WordPress.org</a>. <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/2699.png\" alt=\"⚙\" class=\"wp-smiley\" /></p>\n</div></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 06 May 2022 14:40:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"David Bisset\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"Do The Woo Community: WooBits: Web3 Integration, Woo in Search and More Random WooCommerce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=71604\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"https://dothewoo.io/web3-integration-and-woocommerce-in-search/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:415:\"<p>This week I chat about the flux of crypto plugins for WooCommerce, how Woo is rating in search and third-party risks.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://dothewoo.io/web3-integration-and-woocommerce-in-search/\">WooBits: Web3 Integration, Woo in Search and More Random WooCommerce</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 06 May 2022 10:03:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"WPTavern: FSE Outreach #14: Building Recipe Posts With Lists and Quotes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=134115\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://wptavern.com/fse-outreach-14-building-recipe-posts-with-lists-and-quotes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4926:\"<p>Round #14 of the FSE Outreach program is <a href=\"https://make.wordpress.org/test/2022/04/28/fse-program-testing-call-14-rallying-recipe-reviewers/\">now open to the public</a>. Anne McCarthy, who oversees the program, calls for testers to build a recipe post using existing tools like the template editor and some new and experimental blocks.</p>\n\n\n\n<p>Those who want to leave feedback can do so until May 18. The program always needs testers from across the spectrum of user experiences. This is an easy way to contribute back to the WordPress project.</p>\n\n\n\n<p>The latest round calls on users to test some new blocks in the Gutenberg plugin. Some of these are related to comments. I opted out of this part of the test because I had already covered everything I had to say in <a href=\"https://wptavern.com/new-comment-related-blocks-arriving-with-wordpress-6-0\">an article in early April</a>. That post, along with feedback from the community, helped drive some of the changes that should land in WordPress 6.0.</p>\n\n\n\n<p>My focus was on the List and Quote block updates for this round. &#8220;Version 2&#8221; of these are available via Gutenberg 13.1 and must be enabled via the Gutenberg > Experiments admin screen.</p>\n\n\n\n<p>The new List is no longer a single block. Instead, each item within it is a separate block of its own. Likewise, for each sub-list.</p>\n\n\n\n<p>The overhaul of the Quote block allows end-users to nest other blocks within it. By default, this is a Paragraph, and there seems to be no limit to what can be placed inside.</p>\n\n\n\n<p>I had fun with this testing round. <em>Recipes are my jam</em>, so I had to pick the perfect one to share. Ultimately, I built a custom &#8220;recipe template&#8221; and a <em>faux</em> recipe post, as shown in the following screenshot:</p>\n\n\n\n<img />\n\n\n\n<p>For this experiment, I relied on the ever-reliable <a href=\"https://wordpress.org/themes/archeo/\">Archeo theme</a> by Automattic. It has been my go-to for several weeks now, and I will likely continue using it until I find something new that sparks my interest. It is definitely a solid solution for these types of tests.</p>\n\n\n\n<h2>Testing the New List and Quote Blocks</h2>\n\n\n\n<p>The call for testing asks volunteers to create a custom template for recipe posts. The only change I made to the theme&#8217;s default single template was to wrap the site header, post title, and post excerpt in a Cover block tied to the post&#8217;s featured image.</p>\n\n\n\n<img />Custom single recipe template.\n\n\n\n<p>I described <a href=\"https://wptavern.com/featured-cover-blocks-and-the-future-of-binding-data-to-generic-wordpress-blocks\">how to do this in a post in April</a>. Once that was in place, I moved forward with building out a recipe post.</p>\n\n\n\n<p>Ultimately, I added a short intro for the recipe. Then, used the Columns block to section off the <a href=\"https://wptavern.com/how-to-build-a-recipe-card-via-the-wordpress-block-editor\">recipe card</a> and some tips from readers. This is where I was able to dive into the experimental List and Quote blocks.</p>\n\n\n\n<p>The List block proved to be the most problematic. It seemed impossible to add a new item to the top level after an inserted sub-list. Clicking the first item and hitting <code>Enter</code> deleted everything nested below it. No amount of clicking or keyboard input seemed to get me back to the top level to continue adding more items.</p>\n\n\n\n<p>Eventually, I wised up and navigated to the top level via the breadcrumbs in the editor. Then, I clicked the &#8220;+&#8221; icon (this could also be done from the editor&#8217;s list view). As someone who primarily works from the keyboard, this felt unintuitive.</p>\n\n\n\n<img />Troubleshooting a List block.\n\n\n\n<p>It also seems impossible to escape the List and into a new Paragraph block. In the past, this could be accomplished by hitting the <code>Enter</code> key twice while on the final list item. That action now creates a nested list.</p>\n\n\n\n<p>Markdown-based lists are also not transformed into a List block when pasted into the editor. The formatting is lost, and each item gets absorbed into a Paragraph block.</p>\n\n\n\n<p>The new Quote block worked well. It is now possible to add nested blocks inside it, one of the features I have long needed as a writer here at the Tavern when quoting from third-party resources.</p>\n\n\n\n<p>One enhancement I would like to see for Quote v2 is the <code>&lt;cite></code> element separated into a standalone block. This would allow end-users to customize its design separately from the wrapping <code>&lt;blockquote></code> on the block and global levels. Currently, only theme authors can modify its style, which must be handled via custom CSS.</p>\n\n\n\n<p>Overall, I am eager to see the finalized versions of these blocks. They will bring back some of the missing functionality from the classic editor and give users the flexibility to do even more.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 06 May 2022 03:04:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:43;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"WordPress.org blog: The Month in WordPress – April 2022\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=12816\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2022/05/the-month-in-wordpress-april-2022/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:10554:\"<p>This past month saw a lot of preparation work for WordPress 6.0, due to release on 24 May 2022. This major release brings exciting improvements – read on to find out more about the latest happenings in the WordPress project.</p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity\" />\n\n\n\n<h2>WordPress 6.0 Release Candidate 1</h2>\n\n\n\n<p><strong>The first release candidate (RC1) for WordPress 6.0 is now available for download</strong>. Help improve the project by testing and translating this version to non-English languages. Check out the RC1 <a href=\"https://wordpress.org/news/2022/05/wordpress-6-0-release-candidate-1/\">release post</a> to learn what’s new and how to contribute. For a more in-depth look at the upcoming changes, you can refer to the <a href=\"https://make.wordpress.org/core/2022/05/03/wordpress-6-0-field-guide/\">WordPress 6.0 Field Guide</a>.</p>\n\n\n\n<p>WordPress 6.0 is packed with all kinds of improvements for everyone. It brings new blocks, <a href=\"https://make.wordpress.org/core/2022/04/20/wordpress-6-0-accessibility-improvements/\">accessibility enhancements</a>, refined design tools, the ability to switch theme styles easily, multi-block partial text selection, and a new block locking interface, to name a few of its highlights.</p>\n\n\n\n<div class=\"wp-container-1 wp-block-buttons\">\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link\" href=\"https://wordpress.org/news/2022/05/episode-30-a-sneak-peek-at-wordpress-6-0/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong><strong>Listen to the latest </strong><strong>WP Briefing episode</strong><strong> for a sneak peek into the exciting features included in WordPress 6.0.</strong></strong></a></div>\n</div>\n\n\n\n<h2>Gutenberg releases: Versions 13.0 and 13.1 are here</h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2022/04/14/whats-new-in-gutenberg-13-0-14-april/\">Gutenberg 13.0</a> shipped on April 14, 2022, and introduced the final updates that will be part of WordPress 6.0. These include an improved editor experience (with the ability to select text across blocks), better responsive blocks, and prominently exposed block patterns.</li><li><a href=\"https://make.wordpress.org/core/2022/04/28/whats-new-in-gutenberg-13-1-27-april/\">Gutenberg 13.1</a> landed on April 27, 2022. This version adds border support to the Columns block and accessibility and Comment block improvements.</li></ul>\n\n\n\n<div class=\"wp-container-2 wp-block-buttons\">\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link\" href=\"https://make.wordpress.org/core/tag/gutenberg-new/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong><strong>Follow the </strong><strong>#gutenberg-new</strong><strong> posts for more details on the latest updates.</strong></strong></a></div>\n</div>\n\n\n\n<h2>Team updates: Updated guidelines for in-person events, redesign of the Gutenberg page, and more</h2>\n\n\n\n<ul><li>The Community team announced <a href=\"https://make.wordpress.org/community/2022/04/21/announcement-updated-covid-19-guidelines-for-official-wordpress-events/\">updated Covid-19 guidelines</a> for official WordPress events.</li><li>The <a href=\"https://make.wordpress.org/meta/2022/04/12/gutenberg-landing-page-kick-off/\">redesign of the Gutenberg landing page</a> on WordPress.org is nearing completion.</li><li>#WPDiversity announced new meeting times for Asia-Pacific (APAC) areas. You can express your interest <a href=\"https://make.wordpress.org/community/2022/04/22/wpdiversity-is-expanding-to-apac/\">in this post</a>.</li><li>The Training team plans to <a href=\"https://make.wordpress.org/training/2022/04/19/migrating-contributor-training-to-learn-wordpress/\">migrate the Contributor Training materials</a> to Learn WordPress. This move will help consolidate all the community-based training content in one place.</li><li>All learners on Learn WordPress can now enjoy using <a href=\"https://make.wordpress.org/training/2022/04/07/demo-sites-for-learn-wordpress-users/\">a live WordPress demo site</a> as they go through courses on the site.</li><li>The first stable <a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/core/2022/04/18/version-1-0-0-of-the-performance-lab-plugin-published/\" target=\"_blank\">version 1.0.0</a> of the <a href=\"https://wordpress.org/plugins/performance-lab/\">Performance Lab</a> plugin was released.</li><li>Read the latest edition of the <a href=\"https://make.wordpress.org/community/2022/04/21/meetup-organizer-newsletter-april-2022/\">Meetup Organizer Newsletter</a>.</li><li>Everyone is welcome and encouraged to join the new <a href=\"https://make.wordpress.org/photos/\">Photo Directory team</a> meetings. They are held on the first Friday of every month at 14:00 UTC in the <a rel=\"noreferrer noopener\" href=\"https://wordpress.slack.com/messages/photos\" target=\"_blank\">#photos</a> channel of the Make WordPress Slack.</li><li>The Performance team published a <a href=\"https://make.wordpress.org/core/2022/04/12/follow-up-on-webp-by-default-proposal/\">follow-up post</a> with the next steps on the WebP proposal.</li><li>Check out the <a href=\"https://make.wordpress.org/design/2022/04/25/design-share-apr-11-22/\">projects</a> the Design team contributed to over the past couple of weeks.</li><li>Official Featured and Beta plugins now limit <a href=\"https://make.wordpress.org/plugins/2022/04/15/featured-beta-plugins-now-limit-changes/\">ownership and committer changes</a>.</li><li>The April 2022 edition of the <a href=\"https://make.wordpress.org/polyglots/2022/04/22/polyglots-monthly-newsletter-april-2022/\">Polyglots Monthly Newsletter</a> was published.</li><li>The latest edition of People of WordPress features <a href=\"https://wordpress.org/news/2022/04/people-of-wordpress-meher-bala/\">Meher Bala</a>, a frontend web developer and community builder from India.</li><li>The <a rel=\"noreferrer noopener\" href=\"https://wordpress.slack.com/archives/C0FRG66LR\" target=\"_blank\">#props</a> channel of the Make WordPress Slack is now connected to the WordPress.org profile activity! This way when you give props, it will be included on your WordPress.org profile and the profile of those you mention. This change is part of a <a href=\"https://make.wordpress.org/project/2022/03/16/proposal-to-remove-spam-dormant-five-for-the-future-pledges/\">larger project</a> that will help credit more non-code contributions.</li></ul>\n\n\n\n<div class=\"wp-container-3 wp-block-buttons\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link\" href=\"https://make.wordpress.org/community/2022/04/11/return-to-in-person-events-share-your-challenges/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>How do you feel about in-person WordPress gatherings? The Community team wants to hear about the challenges in returning to these events.</strong></a></div>\n</div>\n\n\n\n<h2>Open feedback/testing calls</h2>\n\n\n\n<ul><li>Following this <a href=\"https://make.wordpress.org/updates/2021/03/16/proposal-a-wordpress-project-contributor-handbook/\">proposal</a> for a WordPress Project Contributor Handbook, Executive Director Josepha Haden opened a <a href=\"https://make.wordpress.org/project/2022/04/29/discussion-contrib-handbook-part-2/\">round of discussions</a> to share feedback on the various handbook sections.</li><li>Version 19.8 of WordPress for <a href=\"https://make.wordpress.org/mobile/2022/05/02/call-for-testing-wordpress-for-android-19-8/\">Android</a> and <a href=\"https://make.wordpress.org/mobile/2022/05/02/call-for-testing-wordpress-for-ios-19-8/\">iOS</a> is available for testing.</li><li>Join the 14th testing call of the Full Site Editing (FSE) Outreach program – “<a href=\"https://make.wordpress.org/test/2022/04/28/fse-program-testing-call-14-rallying-recipe-reviewers/\">Rallying Recipe Reviewers</a>.” This call focuses on testing blocks that help recipe authors make their recipe blogs more interactive. Leave your feedback by May 18, 2022.</li></ul>\n\n\n\n<div class=\"wp-container-4 wp-block-buttons\">\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link\" href=\"https://make.wordpress.org/test/2022/04/12/help-wanted-test-wordpress-6-0/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong><strong>Are you interested in helping test out new WordPress 6.0 features but don’t know where to start? This </strong><strong>detailed guide</strong><strong> will walk you through how to get started.</strong></strong></a></div>\n</div>\n\n\n\n<h2>Get ready for WordCamp Europe in Porto</h2>\n\n\n\n<ul><li>We are four weeks away from <a href=\"https://central.wordcamp.org/news/2022/05/join-the-european-wordpress-community-in-porto-portugal/\">WordCamp Europe</a>. After being postponed twice due to the pandemic, the WordPress event is taking place in Porto, Portugal, on 2-4 June 2022. Check out the <a href=\"https://europe.wordcamp.org/2022/schedule/\">schedule</a> and get your <a href=\"https://europe.wordcamp.org/2022/tickets/\">tickets</a> if you haven’t yet!</li><li>WordCamp US <a href=\"https://us.wordcamp.org/2022/support-underrepresented-speakers-at-wordcamp-us/\">announced</a> a new program to support underrepresented speakers.</li><li><a href=\"https://irun.wordcamp.org/2022/\">WordCamp Irun</a> (Spain) is happening this month on May 21 and 22, 2022.</li></ul>\n\n\n\n<div class=\"wp-container-5 wp-block-buttons\">\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link\" href=\"https://us.wordcamp.org/2022/our-call-for-volunteers-is-now-open/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong><strong><strong>The </strong><strong>Call for Volunteers</strong><strong> for WordCamp US in San Diego, California, is now open. Newcomers to WordPress are always welcomed. Apply today!</strong></strong></strong></a></div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity\" />\n\n\n\n<p><strong><em><strong><em>Have a story that we could include in the next issue of The Month in WordPress? Let us know by filling out </em></strong><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><strong><em>this form</em></strong></a><strong><em>.</em></strong></em></strong></p>\n\n\n\n<p><em>The following folks contributed to this Month in WordPress: <a href=\"https://profiles.wordpress.org/rmartinezduque/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>rmartinezduque</a>, <a href=\"https://profiles.wordpress.org/cbringmann/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>cbringmann</a>, <a href=\"https://profiles.wordpress.org/dansoschin/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>dansoschin</a>.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 05 May 2022 15:01:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"rmartinezduque\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"Do The Woo Community: Listen to Yourself When Agency Life Calls You Back with Remkus de Vries\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=71595\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://dothewoo.io/listening-to-yourself-when-agency-life-calls-you-back/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:438:\"<p>Remkus de Vries has decided to reboot his agency and bring himself back into setting at the helm of his life and his business.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://dothewoo.io/listening-to-yourself-when-agency-life-calls-you-back/\">Listen to Yourself When Agency Life Calls You Back with Remkus de Vries</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 05 May 2022 10:01:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"WPTavern: WordPress Should Support Featured Images for Categories, Users, and More\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=133652\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"https://wptavern.com/wordpress-should-support-featured-images-for-categories-users-and-more\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4227:\"<p>One of the features that I have long wanted for WordPress has been on my mind lately. It is not a new idea, and it has been implemented in some form or fashion by plugin and theme authors in the past. However, it has never been standardized. WordPress needs featured images for more than just posts. It should support them for taxonomy terms (e.g., categories, tags) and users.</p>\n\n\n\n<p>One month ago today, I participated in <a href=\"https://wptavern.com/fse-outreach-13-building-an-author-template-from-the-wordpress-site-editor\">Round #13 of the FSE Outreach Program</a>. It was the first time that the Gutenberg plugin allowed adding a new author template via the site editor (this is coming in WordPress 6.0). Author templates have always been supported if added via the theme, but users now have that power. The program called for volunteers to test this feature and some new author-related blocks.</p>\n\n\n\n<p>As I always do when participating in the FSE Outreach testing calls, I tried to push the design limits of the editor. Much of the program focuses on the user experience, but I want to go beyond that and find those design-related pain points.</p>\n\n\n\n<p>Ultimately, I settled on a design for my <em>faux</em> author template:</p>\n\n\n\n<img />Custom author template.\n\n\n\n<p>I added a Cover block as the backdrop for the author profile section at the top of the page. I liked the look of the mountains mixed in with the active theme design. The problem was that there was no way to personalize that for each user account. Sure, every user gets to select their own avatar and write their own bio, but there is no easy way to let them have their own featured image.</p>\n\n\n\n<p>Technically, it is possible to do this by creating custom <code>author-{$id}.html</code> or <code>author-{$username}.html</code> templates and manually and uploading them to the theme&#8217;s <code>/templates</code> folder. For controlled environments, such as client builds with a set number of users/authors, it is a possibility. Even in those scenarios, it is a bit of a management headache. And it does not account for every other WordPress user who might want to do something similar.</p>\n\n\n\n<p>In the classic era, the same issue existed. However, it was relatively simple to code for the front end in a PHP-based templating system. For block themes, most would need to create a custom block. The image upload form would be the same in both scenarios (handled on user profile and taxonomy term admin screens).</p>\n\n\n\n<p>The trouble with custom blocks is they do not tap into the core blocks&#8217; built-in features. For example, WordPress 6.0 will allow setting a Cover block&#8217;s background using the post featured image. In the long term, core will likely support this for other image-related blocks like Media &amp; Text. Porting these same features over to third-party plugins does not make sense.</p>\n\n\n\n<p>It also does not empower users who want to build such designs with WordPress. Nor does it provide theme authors with the tools to ship templates and patterns with unique layouts to the public.</p>\n\n\n\n<p>While I have primarily focused on author templates, the same arguments stand for taxonomy term templates, such as categories and tags. For example, I built out a quick category template using a similar design as shown earlier:</p>\n\n\n\n<img />\n\n\n\n<p>The image works well for my example Nature category but not so much for others.  We need a way to dynamically display per-category images.</p>\n\n\n\n<p>There is at least a solid plugin for taxonomy terms: <a href=\"https://wordpress.org/plugins/wp-term-images/\">WP Term Images</a>. Perhaps I can convince John James Jacoby, the plugin&#8217;s author, to extend it to the block system.</p>\n\n\n\n<p>After stewing on this for a month, I still did not know whether I could make a convincing argument for the feature other than <em>I think this would be cool</em>. I am unsure if there is enough demand for it. However, it is OK to dream about new things from time to time and share those ideas with others. So, this is me, dreaming out loud, hoping that one of the items from my wish list will land in WordPress one day.</p>\n\n\n\n<p>What are some of the things you want to see?</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 05 May 2022 01:50:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"Post Status: Post Status Excerpt (No. 57) — WordPress Development With Docker and Lando\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=96903\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://poststatus.com/wordpress-development-with-docker-and-lando/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4462:\"<blockquote class=\"wp-block-quote\"><p>“Back in the early days of WordPress development&#8230; I could only have one system on my local computer.”</p><cite>— Cal Evans</cite></blockquote>\n\n\n\n<p class=\"has-drop-cap\">In this developer-oriented conversation for <strong>Post Status Excerpt</strong>, David talks about WordPress development with <strong>Cal Evans</strong>. Cal explains the basics of <strong>Docker</strong> and <strong>Lando</strong> — as well as the advantages of using them. <strong>Docker</strong> is an open platform for developing, shipping, and running applications. It can work with <strong>Lando</strong> to automate your development workflow.</p>\n\n\n\n<p><strong>Why This Matters:</strong> Developers — both individually and in teams — are building more complex applications with (and for) WordPress, so the software stack is getting more complex. How you setup your environment (local, cloud, or both) is becoming more important, and developers should educate themselves on the available options — especially with popular choices being explored by PHP developers.</p>\n\n\n\n\n\n\n\n<p class=\"has-background\">Every week <strong><a href=\"https://poststatus.com/podcast/the-excerpt/\">Post Status Excerpt</a></strong> will bring you important news and insights from guests working in the WordPress space. <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f399.png\" alt=\"?\" class=\"wp-smiley\" /><br /><br />You can listen to <a href=\"https://poststatus.com/podcast/the-excerpt/\">past episodes</a> of <strong>The Excerpt</strong>, <a href=\"https://poststatus.com/category/post-status-podcasts/\">browse all our podcasts</a>, and don’t forget to subscribe on <a href=\"https://open.spotify.com/show/1m3xwXbe0MG5BzFVPtB0A7\">Spotify</a>, Amazon Music, <a href=\"https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5zaW1wbGVjYXN0LmNvbS8ySkU5c2M4UA\">Google Podcasts</a>, <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\">iTunes</a>, <a href=\"https://castro.fm/podcast/c53552c6-1ee0-4fc4-9de4-08ed6bf1ee4d\">Castro</a>, <a href=\"https://www.youtube.com/c/PostStatus\">YouTube</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\">Stitcher</a>, <a href=\"https://player.fm/series/wordpress-post-status-podcasts\">Player.fm</a>, <a href=\"https://pca.st/05rR\">Pocket Casts</a>, <a href=\"https://wordpress-post-status-draft-podcast.simplecast.com/\">Simplecast</a>, or by <a href=\"https://feeds.simplecast.com/2JE9sc8P\">RSS</a>. <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f3a7.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n\n\n\n<h3 id=\"h-mentioned-in-the-show\"><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f517.png\" alt=\"?\" class=\"wp-smiley\" /> Mentioned in the show:</h3>\n\n\n\n<ul><li><a href=\"https://docs.docker.com/get-started/overview/\">Docker Get Started</a></li><li><a href=\"https://blog.calevans.com/2022/03/29/lando-wordpress-and-ngrok-oh-my/\">Lando, WordPress, and ngrok&#8230;oh my</a></li><li><a href=\"https://blog.calevans.com/2021/03/12/lando-db-helper/\">Lando DB Helper</a></li><li><a href=\"https://twitter.com/CalEvans/status/1287901011252842500\">Lando and WordPress Development</a></li><li><a href=\"https://lando.dev/\">Lando Website</a></li><li><a href=\"https://calevans.com/\">Cal Evan\'s Personal Website</a></li><li><a href=\"https://twitter.com/CalEvans\">Cal Evans</a> (Twitter)</li><li><a href=\"https://twitter.com/dimensionmedia\" target=\"_blank\" rel=\"noreferrer noopener\"></a><a href=\"https://twitter.com/dimensionmedia\" target=\"_blank\" rel=\"noreferrer noopener\">David Bisset</a> (Twitter)</li><li><a href=\"https://twitter.com/dimensionmedia\" target=\"_blank\" rel=\"noreferrer noopener\"></a><a href=\"https://twitter.com/post_status\" target=\"_blank\" rel=\"noreferrer noopener\">Post Status</a> (Twitter)</li></ul>\n\n\n\n<div class=\"wp-container-11 wp-block-group has-theme-palette-7-background-color has-background\"><div class=\"wp-block-group__inner-container\">\n<h3 id=\"sponsor-bluehost\"><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f64f.png\" alt=\"?\" class=\"wp-smiley\" /> Sponsor: <a href=\"https://poststat.us/wpengine/\">WP Engine</a></h3>\n\n\n\n<p>WP Engine is the WordPress Digital Experience Platform that drives your business forward faster. Simply put, WP Engine makes WordPress easier and faster, and they do the heavy lifting for our customers, so they can focus on their core business and win online.</p>\n</div></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 04 May 2022 17:15:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"David Bisset\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:47;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"Post Status: This Week at WordPress.org (May 1, 2022)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=97003\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://poststatus.com/this-week-at-wordpress-org-may-1-2022/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:15720:\"<p class=\"has-theme-palette-7-background-color has-background\">Each week we are highlighting the news from WordPress.org that you don\'t want to miss.  If you or your company create products or services that use WordPress, we\'ve got the news you need to know. Be sure to share this resource with your product and project managers. <br /><br /><strong>Are you interested in giving back and contributing your time and skills to WordPress.org?</strong> <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f64f.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/support/article/contributing-to-wordpress/\">Start Here ›</a><br /><br /><strong>Get our weekly WordPress community news digest</strong> — Post Status\' <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> — covering the WP/Woo news plus significant writing and podcasts. It\'s also available in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f48c.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n\n\n\n<h2 id=\"h-news\">News</h2>\n\n\n\n<ul><li><a href=\"https://wordpress.org/news/2022/04/wordpress-6-0-beta-3/\"></a><a href=\"https://wordpress.org/news/2022/05/wordpress-6-0-release-candidate-1/\">WordPress 6.0 Release Candidate 1</a></li><li><a href=\"https://wordpress.org/news/2022/04/wordpress-6-0-beta-3/\"></a><a href=\"https://wordpress.org/news/2022/05/wordpress-6-0-beta-4/\">WordPress 6.0 Beta 4</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/03/wordpress-6-0-field-guide/\">WordPress 6.0 Field Guide</a></li><li><a href=\"https://wordpress.org/news/2022/04/wordpress-6-0-beta-3/\"></a><a href=\"https://wordpress.org/news/2022/05/episode-30-a-sneak-peek-at-wordpress-6-0/\">WP Briefing: Episode 30: A Sneak Peek at WordPress 6.0</a></li><li><a href=\"https://wordpress.org/news/2022/04/people-of-wordpress-meher-bala/\">People of WordPress: Meher Bala</a></li><li>New <a href=\"https://poststatus.com/planet/feed/#5ftf\">Five for the Future</a> section below! </li></ul>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_a98156-c2\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"wp-block-columns\">\n<div class=\"wp-block-column\">\n<h2 id=\"h-accessibility\"><a href=\"https://make.wordpress.org/accessibility\">Accessibility</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2022/04/20/wordpress-6-0-accessibility-improvements/\">WordPress 6.0 Accessibility Improvements</a></li></ul>\n\n\n\n<h2 id=\"h-central\"><a href=\"https://central.wordcamp.org\">Central</a></h2>\n\n\n\n<ul><li><a href=\"https://central.wordcamp.org/news/2022/05/join-the-european-wordpress-community-in-porto-portugal/\">Join the European WordPress Community in Porto, Portugal!</a></li></ul>\n\n\n\n<h2 id=\"h-core\"><a href=\"https://make.wordpress.org/core\">Core</a> </h2>\n\n\n\n<p>Reminder: <a href=\"https://developer.wordpress.org/block-editor/contributors/versions-in-wordpress/\">Gutenberg 13.0 ships with WordPress 6.0</a>.</p>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2022/05/03/a-week-in-core-may-2-2022/\">A Week in Core – May 2, 2022</a></li></ul>\n\n\n\n<h3 id=\"h-devnotes\">DevNotes</h3>\n\n\n\n<p>Leading up to releasing WordPress 6.0, DevNotes and release-related information will remain.</p>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2022/05/03/wordpress-6-0-field-guide/\">WordPress 6.0 Field Guide</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/05/block-locking-settings-in-wordpress-6-0/\">Block Locking Settings in WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/04/wordpress-6-0-release-candidate-phase/\">WordPress 6.0 Release Candidate Phase</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/03/miscellaneous-dev-notes-for-wordpress-6-0/\">Miscellaneous Dev Notes for WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/03/block-editor-miscellaneous-dev-notes-for-wordpress-6-0/\">Block Editor miscellaneous Dev Notes for WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/03/page-creation-patterns-in-wordpress-6-0/\">Page creation patterns in WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/03/global-styles-variations-in-wordpress-6-0/\">Global Styles variations in WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/03/separator-block-updated-to-use-block-supports-color-settings/\">Separator block: Updated to use block supports color settings</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/03/block-markup-updates-for-image-quote-list-and-group-blocks/\">Block markup updates for image, quote, list, and group blocks</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/03/support-for-handling-resolution-errors-for-editor-data-module/\">Support for handling resolution errors for Editor data module</a></li><li><a href=\"https://make.wordpress.org/core/2022/04/28/taxonomy-performance-improvements-in-wordpress-6-0/\" target=\"_blank\" rel=\"noreferrer noopener\">Taxonomy performance improvements in WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/04/27/changes-to-do_parse_request-filter-in-wordpress-6-0/\">Changes to the do_parse_request filter in WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/04/29/caching-improvements-in-wordpress-6-0/\">Caching improvements in WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/04/27/new-filter-to-modify-content-images-in-wordpress-6-0/\">New filter to modify content images in WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/02/media-storing-file-size-as-part-of-metadata/\">Media: storing file size as part of the metadata</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/05/updates-to-the-wordpress-create-block-templating-system/\">Updates to the @wordpress/create-block templating system</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/02/object-type-specific-registration-hooks-in-6-0/\">Object type-specific registration hooks in 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/04/28/taxonomy-performance-improvements-in-wordpress-6-0/\">Taxonomy performance improvements in WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/02/new-features-for-working-with-patterns-and-themes-in-wordpress-6-0/\">New features for working with patterns and themes in WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/02/theme-export-in-wordpress-6-0/\">Theme export in WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/04/29/wp_user_query-now-accepts-fields-options-in-wordpress-6-0/\">WP_User_Query now accepts fields options in WordPress 6.0&nbsp;</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/02/performance-increase-for-sites-with-large-user-counts-now-also-available-on-single-site/\">Performance increase for sites with large user counts (now also available on a single site)</a></li></ul>\n\n\n\n<h2 id=\"h-docs\"><a href=\"https://make.wordpress.org/docs\">Docs</a></h2>\n\n\n\n<ul><li><a href=\"https://wordpress.tv/2022/03/30/milana-cap-birgit-pauli-haack-courtney-engle-robertson-femy-praseeth-akira-tachibana-wordpress-release-6-0-trac-ticket-triage-for-docs/\">WordPress release 6.0 Trac ticket triage for docs</a></li><li><a href=\"https://make.wordpress.org/updates/2022/04/25/documentation-team-update-april-25-2022/\">Documentation Team Update – April 25, 2022</a></li></ul>\n\n\n\n<h3 id=\"h-developer-docs\"><a href=\"https://developer.wordpress.org\">Developer Docs:</a></h3>\n\n\n\n<ul><li><a href=\"https://developer.wordpress.org/block-editor/reference-guides/packages/packages-preferences-persistence/\">@wordpress/preferences-persistence</a></li></ul>\n\n\n\n<h3 id=\"h-support-docs\"><a href=\"https://wordpress.org/support/articles\">Support Docs:</a></h3>\n\n\n\n<ul><li><a href=\"https://wordpress.org/support/article/wolfram-embed/\">Wolfram Embed</a></li><li><a href=\"https://wordpress.org/support/article/site-tagline-block/\">Site Tagline Block</a></li><li><a href=\"https://wordpress.org/support/article/post-content-block/\">Post Content Block</a></li></ul>\n</div>\n\n\n\n<div class=\"wp-block-column\">\n<h2 id=\"h-community\"><a href=\"https://make.wordpress.org/community\">Community</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/community/2022/04/21/announcement-updated-covid-19-guidelines-for-official-wordpress-events/\"></a><a href=\"https://make.wordpress.org/community/2022/04/22/wpdiversity-is-expanding-to-apac/\">WPDiversity is Expanding to APAC!</a></li><li><a href=\"https://make.wordpress.org/community/2022/04/21/announcement-updated-covid-19-guidelines-for-official-wordpress-events/\">Announcement: Updated COVID-19 guidelines for official WordPress events</a></li></ul>\n\n\n\n<h2 id=\"h-design\"><a href=\"https://make.wordpress.org/design\">Design</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/design/2022/04/25/design-share-apr-11-22/\">Design Share: Apr&nbsp;11–22</a></li></ul>\n\n\n\n<h2 id=\"h-hosting\"><a href=\"https://make.wordpress.org/hosting\">Hosting</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/hosting/2022/05/04/get-ready-for-wordpress-6-0/\">Get ready for WordPress 6.0</a></li></ul>\n\n\n\n<h2 id=\"h-marketing\"><a href=\"https://make.wordpress.org/marketing\">Marketing</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/marketing/2022/04/01/grow-your-story-on-wordpress/\">Grow Your Story on WordPress</a></li></ul>\n\n\n\n<h2 id=\"h-meta\"><a href=\"https://make.wordpress.org/meta\">Meta</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/meta/2022/04/28/proposal-make-wordpress-team-or-project-updates/\">Proposal: Make WordPress Team or Project Updates</a></li><li><a href=\"https://make.wordpress.org/meta/2022/04/12/gutenberg-landing-page-kick-off/\">Gutenberg Landing Page: Kick-Off</a></li></ul>\n\n\n\n<h2 id=\"h-plugins\"><a href=\"https://make.wordpress.org/plugins\">Plugins</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/plugins/2022/04/15/featured-beta-plugins-now-limit-changes/\">Featured/Beta Plugins Now Limit Changes</a></li></ul>\n\n\n\n<h2 id=\"h-polyglots\"><a href=\"https://make.wordpress.org/polyglots\">Polyglots</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/polyglots/2022/05/02/wordpress-6-0-ready-to-be-translated/\">WordPress 6.0 ready to be translated</a></li></ul>\n\n\n\n<h2 id=\"h-project\"><a href=\"https://make.wordpress.org/project\">Project</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/project/2022/04/29/discussion-contrib-handbook-part-2/\">Discussion: Contrib Handbook, Part 2</a></li><li><a href=\"https://make.wordpress.org/project/2022/04/01/discussion-contrib-handbook-part-1/\">Discussion: Contrib Handbook, Part 1</a></li></ul>\n\n\n\n<h2 id=\"h-test\"><a href=\"https://make.wordpress.org/test\">Test</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/test/2022/04/28/fse-program-testing-call-14-rallying-recipe-reviewers/\">FSE Program Testing Call #14: Rallying Recipe Reviewers</a></li></ul>\n\n\n\n<h2 id=\"h-themes\"><a href=\"https://make.wordpress.org/themes\">Themes</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/themes/2022/04/28/latest-changes-in-gutenberg-themes-13-0-release/\">Latest changes in Gutenberg + Themes: 13.0 release</a></li></ul>\n\n\n\n<h2 id=\"h-support\"><a href=\"https://make.wordpress.org/support\">Support</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/support/2022/04/off-forum-support-requests/\">Off forum support requests</a></li></ul>\n\n\n\n<h2 id=\"h-training\"><a href=\"https://make.wordpress.org/training\">Training</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/training/2022/04/19/migrating-contributor-training-to-learn-wordpress/\"></a><a href=\"https://make.wordpress.org/training/2022/05/03/may-2022-sprint/\">May 2022 Sprint</a></li></ul>\n\n\n\n<h4 id=\"h-workshops\">Workshops:</h4>\n\n\n\n<ul><li><a href=\"https://learn.wordpress.org/workshop/applying-duotone-filters-to-change-color-effects/\">Applying Duotone Filters to Change Color Effects</a></li></ul>\n\n\n\n<h4 id=\"h-social-learning-spaces\">Social Learning Spaces:</h4>\n\n\n\n<ul><li><a href=\"https://learn.wordpress.org/?meeting=open-source-principles-and-wordpress\">Open Source Principles and WordPress</a></li><li><a href=\"https://learn.wordpress.org/?meeting=wordpress-5-9-lookback-6-0-look-ahead\">WordPress 5.9 Lookback & 6.0 Look ahead</a></li><li><a href=\"https://learn.wordpress.org/?meeting=showcasing-content-with-query-loops-2\">Showcasing Content with Query Loops</a></li></ul>\n</div>\n</div>\n\n\n\n<h2 id=\"5ftf\"><a href=\"https://wordpress.org/five-for-the-future/\">Five for the Future</a></h2>\n\n\n\n<p>What\'s happening specific to Five for the Future? Provide your feedback on these posts:</p>\n\n\n\n<ul><li><a href=\"https://github.com/WordPress/five-for-the-future/issues/182\">Tracking contributions: receiving special access</a></li><li><a href=\"https://github.com/WordPress/five-for-the-future/issues/180\">Tracking contributions: meeting attendance</a></li><li><a href=\"https://github.com/WordPress/five-for-the-future/issues/177\">Tracking Contributions: HelpScout</a></li><li><a href=\"https://github.com/WordPress/five-for-the-future/issues/176\">Tracking Contributions: Contributors share their contributions periodically.&nbsp;</a></li><li><a href=\"https://github.com/WordPress/five-for-the-future/issues/174\">Manual &#8220;props&#8221; for team activity</a></li><li><a href=\"https://github.com/WordPress/five-for-the-future/issues/173\">The minimal onboarding process for newly pledged contributors</a></li><li><a href=\"https://github.com/WordPress/five-for-the-future/issues/170\">Outreach process for various types of incomplete and dormant pledges</a></li><li><a href=\"https://github.com/WordPress/five-for-the-future/issues/169\">Prevent and remove spam/dormant pledges</a></li><li><a href=\"https://github.com/WordPress/five-for-the-future/issues/168\">Require logging in for submitting the company pledge form</a></li><li><a href=\"https://github.com/WordPress/five-for-the-future/issues/166\">Prevent company pledges from becoming a public without pledges</a></li><li><a href=\"https://github.com/WordPress/five-for-the-future/issues/160\">Include the number of pledges in the pledge listing</a></li><li><a href=\"https://github.com/WordPress/five-for-the-future/issues/140\">Team Pledges: Link to Slack user for convenience</a></li></ul>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile has-background\"><a href=\"https://poststatus.com/\"><img src=\"https://cdn.poststatus.com/wp-content/uploads/2021/09/vertical-post-status-logo-250.png\" alt=\"Post Status\" class=\"wp-image-85823 size-full\" /></a><div class=\"wp-block-media-text__content\">\n<p class=\"has-text-align-left has-normal-font-size\" id=\"h-get-ready-for-remote-work\">You — and <a href=\"https://poststatus.com/business-membership/\">your whole team</a> can <a href=\"https://poststatus.com/post-status-membership-club/\">Join Post Status</a> too!</p>\n\n\n\n<p class=\"has-text-align-left has-small-font-size\"><strong>Build your network. Learn with others. Find your next job — or your next hire.</strong> Read the <strong>Post Status</strong> <a href=\"https://poststatus.com/newsletter/\">newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/2709.png\" alt=\"✉\" class=\"wp-smiley\" /> Listen to <a href=\"https://poststatus.com/podcasts/\">podcasts</a>. <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f399.png\" alt=\"?\" class=\"wp-smiley\" /> Follow <a href=\"https://twitter.com/post_status/\">@Post_Status</a>. <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f426.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n</div></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 04 May 2022 14:56:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Courtney Robertson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:48;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"WPTavern: #25 – Joe Casabona on Why WordPress Is a Great Choice for Your Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=133709\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://wptavern.com/podcast/25-joe-casabona-on-why-wordpress-is-a-great-choice-for-your-podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:49481:\"<p>So on the podcast today we have <a href=\"https://twitter.com/jcasabona\">Joe Casabona</a>.</p>\n\n\n\n<p>Joe is a podcaster and educator, which makes him perfect for the discussion today, ‘Why WordPress Is a Great Choice for Your Podcast’.</p>\n\n\n\n<p>He started his career over 20 years ago as a freelance web developer before realising his true passion, which is sharing his years of knowledge to help creators and small business owners.</p>\n\n\n\n<p>His goal is to help people make money with their content, which he does primarily through his podcast, and courses.</p>\n\n\n\n<p>We start out the podcast talking about Joe’s story; how he found WordPress and podcasting. It was not all plain sailing and Joe went through several iterations of his podcast before he began to think of it less as a hobby, and more as a useful tool for his business.</p>\n\n\n\n<p>The conversation then turns to the purpose of setting up a podcast. Right now podcasts appear to be all the rage. Many people create them for fun, as an outlet for their creativity, but there’s also a growing recognition that they can have purposes beyond entertainment. They could help you connect with customers or be used as a way of communicating with your team.</p>\n\n\n\n<p>We also cover the subject of the things that you’ll need to create a podcast, and why this list is not as daunting or expensive as you might think. You can, if you like, buy the latest and greatest equipment, but Joe is of the opinion that, whilst this is nice, it’s not essential.</p>\n\n\n\n<p>As this is a podcast about WordPress we make sure to discuss how WordPress and podcasting are a perfect match. Whilst many podcast hosting platforms will allow you to have a basic website, it’s likely that you’ll be able to make your podcast more effective if you are able to extend the website’s functionality. WordPress is perfect for this. There’s no restrictions on what you can do and you’re free to change anything whenever you like.</p>\n\n\n\n<p>So if you’re curious about how to set up a podcast, or if you’ve already got one going and just want to hear some fresh perspectives, this episode is for you.</p>\n\n\n\n<h2>Useful links.</h2>\n\n\n\n<p><a href=\"https://casabona.org/\">Joe&#8217;s website</a></p>\n\n\n\n<p><a href=\"https://podcastliftoff.com/\">Podcast Liftoff</a></p>\n\n\n\nTranscript<div>\n<p>[00:00:00] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley. Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case why WordPress is a great choice for your podcast.</p>\n\n\n\n<p>If you&#8217;d like to subscribe to our podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to WP Tavern dot com forward slash feed forward slash podcast. And you can copy and paste that URL into most podcast players.</p>\n\n\n\n<p>If you have a topic that you&#8217;d like us to feature on the podcast, well I&#8217;m keen to hear from you and hopefully get you, or your idea, featured on the show. Head over to WP Tavern dot com forward slash contact forward slash jukebox. And use the contact form there.</p>\n\n\n\n<p>So on the podcast today we have Joe Casabona. Joe is a podcast and educator, which makes him perfect for the discussion today. Why WordPress is a great choice for your podcast. He started his career over 20 years ago as a freelance web developer before realizing his true passion. Which is sharing his years of knowledge to help creators and small business owners.</p>\n\n\n\n<p>His goal is to help people make money with their content. Which he does primarily through his podcast and his courses. We start out the podcast today talking about Joe story. How he found WordPress and podcasting. It wasn&#8217;t all plain sailing. And Joe went through several iterations of his podcast before he began to think of it less as a hobby and more as a useful tool for his business.</p>\n\n\n\n<p>The conversation then turns to the purpose of setting up a podcast. Right now podcasts appear to be all the rage. Many people create them for fun. As an outlet for their creativity. But there&#8217;s also a growing recognition that they can have a purpose beyond entertainment. They could help you connect with customers or be used as a way of communicating with your team.</p>\n\n\n\n<p>We also cover the subject of the things that you&#8217;ll need to create a podcast. And why this list is not as daunting or as expensive as you might think. You can, if you like, buy the latest and greatest equipment, but Joe is of the opinion that, whilst this is nice, it&#8217;s not essential.</p>\n\n\n\n<p>As this as a podcast about WordPress, we make sure to discuss how WordPress and podcasting are a perfect match.</p>\n\n\n\n<p>Whilst many podcast hosting platforms will allow you to have a basic website, it&#8217;s likely that you&#8217;ll be able to make your podcast more effective if you&#8217;re able to extend the website&#8217;s functionality. WordPress is perfect for this. There&#8217;s no restrictions on what you can do and you&#8217;re free to change anything whenever you like.</p>\n\n\n\n<p>So, if you&#8217;re curious about how to set up a podcast, or if you&#8217;ve already got one going and just want to hear some fresh perspectives, this episode is for you.</p>\n\n\n\n<p>If you&#8217;re interested in finding out more, you can find all the links in the show notes by heading over to WP Tavern dot com forward slash podcast. Where you&#8217;ll also find all the other episodes. And so without further delay, I bring you Joe Casabona.</p>\n\n\n\n<p>I am joined on the podcast today by Joe Casabona. Hello Joe.</p>\n\n\n\n<p>[00:03:58] <strong>Joe Casabona:</strong> Hey, Nathan. Thanks for having me.</p>\n\n\n\n<p>[00:04:00] <strong>Nathan Wrigley:</strong> You&#8217;re very welcome. Joe and I have actually spoken on a number of occasions, but we&#8217;ve never actually spoken about this particular subject. And it&#8217;s nice to have you on the WP Tavern podcast as well. First of all, Joe the generic question, which always ask, it may not be the most interesting, but at least it sets the tone for the episode. Give us a little bit of a backstory about yourself as long or as short as you like, tell us who you are and how come you&#8217;re talking about podcasts and WordPress today?</p>\n\n\n\n<p>[00:04:24] <strong>Joe Casabona:</strong> Yeah. So I&#8217;ve been a WordPress developer since 2004. My origin story is a little bit, I was telling my friend how I think I&#8217;m going to build my own content management system, cause I was doing client work since high school. And he said, have you heard of this thing called WordPress? And I was like, no, I looked into it, and I basically used it ever since. I did it the bad way for awhile before pages were supported, I would put like my own PHP files into Core, but then pages got support in like 2006, I think, and since then, pretty much all of my client work has been done with WordPress. I also, since second grade was in drama club from second to 12th grade.</p>\n\n\n\n<p>And so I love entertaining. I love performing, and podcasting seemed like a good outlet for that, as I became an adult and moved away from theater, as other things claimed my time. But in 2012, I launched a podcast, but it was terrible because it was like a panel podcast. It was basically just me and my buddies talking, which is just like the worst kind of podcast.</p>\n\n\n\n<p>But in 2016 I launched a real proper, I had a proper go at podcasting with my podcast, how I built it. And since then, that&#8217;s a main driver of my income. I&#8217;m self-employed, full time since 2017. I have three children at home, so this business supports my family and podcasting is a major part of that. And so from 2016 on I&#8217;ve been able to combine my two careers of WordPress and podcasting into a content creation business we&#8217;ll say.</p>\n\n\n\n<p>[00:05:58] <strong>Nathan Wrigley:</strong> So it&#8217;s fair to say that on the subject of podcasting and WordPress combined, you&#8217;ve pretty much got it sussed. So that&#8217;s perfect. Thank you very much indeed. You mentioned in there that you had a go at podcasting and the format was wrong, but you persevered. And I&#8217;m just curious about that. It seems to me that at the moment, the words I&#8217;m going to do a podcast, pretty much fall out of everybody&#8217;s lips at some point. It&#8217;s very much in vogue. Everybody&#8217;s talking about it. It&#8217;s the latest thing. Whether or not that continues, who knows, but right now it seems that everybody wants to get on that bandwagon. Do you think it is for everybody? Are there any gotchas that you would put in people&#8217;s way and say, actually before you commit, just answer these questions about yourself. Just think about these particular things. I know that&#8217;s a very generic question, but do you believe it is truly for everybody?</p>\n\n\n\n<p>[00:06:49] <strong>Joe Casabona:</strong> I think it is for everybody, as long as the answer to why do you want to start a podcast is not to make a lot of money or to be famous. I think you need a better reason than either one of those, because while I make a lot of my money with podcasting, it&#8217;s not the reason I started. I thought that this was going to be more of like a marketing tool for my online courses which is another way to make money. Don&#8217;t get me wrong.</p>\n\n\n\n<p>But if you go into podcasting thinking, I&#8217;m going to be rich and I&#8217;m going to be famous. I&#8217;m going to be the next Joe Rogan or Conan O&#8217;Brien or whoever Then you&#8217;ll be disappointed. But if you go in with a reason beyond that, I want to help people learn about this thing I&#8217;m passionate about. I want to help establish my expertise in a specific area, then yes, you should start a podcast.</p>\n\n\n\n<p>[00:07:44] <strong>Nathan Wrigley:</strong> Do you think that the skill set is something that you can learn in its entirety? Because there&#8217;s a lot going on in a podcast. When you consume it, it feels as if it just fell out of the podcast player. You know, you might not realize the amount of work that goes in. That might be research. It might be setting up the interview, redoing the interview, editing the interview, putting music in and searching for that. The time spent, if you&#8217;re doing guest interviews and all of that.</p>\n\n\n\n<p>Do you feel that there&#8217;s a certain proclivity, a certain type of person who fits best? In other words, If you&#8217;re, let&#8217;s say more on the reclusive side, is that something that would put you off? And also, from a technical point of view, can you just learn everything that needs to be learned, or is it difficult to acquire the skills and, you know, you need to basically dedicate time to learn all those before you actually commit to starting.</p>\n\n\n\n<p>[00:08:36] <strong>Joe Casabona:</strong> Yeah, that&#8217;s a really interesting question because, I think a lesson people learn time and time again is the thing that looks effortless on the front end, right? The way we see it is actually a huge effort on the backend, by the creator, right? The YouTube videos that look like they&#8217;re so smooth and easy, really just take hours of editing for example, right. And so I think it does take time to learn. I think the hardest thing to learn is probably how to have a good conversation. I think a lot of people don&#8217;t really know how to do that, especially with people they don&#8217;t know personally.</p>\n\n\n\n<p>And so that takes some research. You know, you and I had a pre-interview discussion, even though we know each other. I do the same thing with my podcast interviewees. We get out about 20 minutes before we&#8217;re going to record and chat and get comfortable with each other. So I think that there are some things you do need to learn. Or you need to recognize your strengths and outsource the things that you don&#8217;t care to learn or don&#8217;t like to do, right.</p>\n\n\n\n<p>Coming from the WordPress space, that always feels like a tough conversation to have, right? Why would I pay for somebody to do it when I can do it myself, but one of the first things and one of the best things I did when I started my podcast was hire an editor. I hated editing. And if I had to edit my own podcasts, I wouldn&#8217;t be where I am today.</p>\n\n\n\n<p>[00:09:59] <strong>Nathan Wrigley:</strong> So it&#8217;s a question of finding the things that you&#8217;re good at. Finding the things that you like. Concentrating on those and knowing that there are commercial avenues for taking that off your plate and giving it to somebody else. That&#8217;s really good advice.</p>\n\n\n\n<p>In terms of the sort of scope of the project, typically the podcasts that I listened to fall into two main categories, I listened to podcasts for entertainment. So, there&#8217;s comedy podcasts and there&#8217;s news podcasts and things like that. But then I also more recently have found podcasts where I&#8217;m consuming information. It&#8217;s almost like I&#8217;ve replaced the TV documentary with podcasts.</p>\n\n\n\n<p>And I just wonder if you had any thoughts about that. In other words, should you think really carefully about the subject matter at hand? Is a pet project good enough. Or do you really need to be introspective and thinking long and hard about what the nature is? In other words, if you begin, are you stuck doing that?</p>\n\n\n\n<p>Or can you pivot halfway through like you did, you kiboshed one podcast and started again. Just curious as to how much thought you think the subject matter of the podcast may need.</p>\n\n\n\n<p>[00:11:06] <strong>Joe Casabona:</strong> Yeah, that&#8217;s a really great question, right, and sometimes it&#8217;s a situation of you don&#8217;t know what you don&#8217;t know, right. It&#8217;s like when you do client work and you say well, what do you, what do you want? I&#8217;ll know I don&#8217;t like something when I see it. And so I think if you want to start a podcast, try your first or third or fifth idea, don&#8217;t spend too much time on laboring over that and just get started. Record a couple of test episodes, and see how well you fall into the habit of recording and the format and see if it works for you.</p>\n\n\n\n<p>Yeah, cause I&#8217;m listening to a highly produced podcast right now called Wicked Game. It looks at all of the American elections from the very first to the 2020 election, American presidential elections, I should say. And it&#8217;s highly produced with music and sound effects and it&#8217;s deeply researched. And it&#8217;s so interesting, but my podcast is nowhere near that. I&#8217;m having a good conversation with somebody. And it&#8217;s a little bit researched.</p>\n\n\n\n<p>I look into my guest if I want to have them on the show. I look at the questions I&#8217;m going to ask them, for example, I&#8217;m interviewing Chris Coyier later today. And I listened Nathan to your interview with him from a few weeks ago, to make sure that we didn&#8217;t cover the same exact things, because there&#8217;s probably some overlap, and I&#8217;m sure Chris doesn&#8217;t wanna, I&#8217;m sure he&#8217;s not going on like a podcast junket, to tell the same stories over and over again. So I think that was maybe a meandering answer. I would say when you have an idea, you think is good enough, start, you&#8217;re not stuck, but it will help you understand what works for you and what does not work for you.</p>\n\n\n\n<p>[00:12:42] <strong>Nathan Wrigley:</strong> The use case, so I mentioned two categories there, broadly entertainment and information. I caught sight of a really interesting idea of podcasting the other day. And I confess having been a podcast and myself for a few years, it was caught short by this re-purposing of audio content. And that was that the CEO of a company, had decided that the daily huddle of his, I don&#8217;t know how many staff let&#8217;s say 20 or so, was it a bit of a waste of time. And he thought to himself, well, most of the people that work for me are commuting. They&#8217;re all using iPhones or Android phones and they&#8217;re all consuming podcasts.</p>\n\n\n\n<p>Why don&#8217;t I create a podcast episode telling everybody what would have been in the morning meeting the following morning. And although that&#8217;s a very specific use case, it just suddenly made me think, oh, so it&#8217;s not just about information. It&#8217;s not just about entertainment. You really could finesse this down, and make it something very specific indeed. I don&#8217;t know if you&#8217;d come across any other curious examples of how audio podcasts had been used.</p>\n\n\n\n<p>[00:13:48] <strong>Joe Casabona:</strong> Yeah, I think that&#8217;s a brilliant, and I had somebody approach me last year interested in basically doing the same thing. They run a company of truck drivers, and instead of making their truck drivers, who could be all over the country, tune into a go-to meeting every month, they wanted to put those go-to meetings, which were usually just presentations by the CEO, out as podcasts.</p>\n\n\n\n<p>That way truck drivers who are in their car or their truck most of the day, could listen whenever they could more conveniently. I&#8217;ve seen use cases of teachers using podcasts to put out lectures, or to announce new homework assignments or add more context to a homework assignment. So there are, especially with the advent of private podcasting, I think there are a ton of fantastic use cases because audio is a simpler medium than video, and it is easier on bandwidth and you have a podcast app where new episodes automatically get downloaded, right? You don&#8217;t have to go to a website to check, to see if it&#8217;s updated. You can get a push notification when a new episode drops.</p>\n\n\n\n<p>[00:15:01] <strong>Nathan Wrigley:</strong> One of the things that I find really amazing about audio is just the fact that I can actually be doing several things at the same time. You know, I can be sitting at my computer working and I can tune into a podcast. And if I don&#8217;t need it to give my full attention, it&#8217;s just there. And if something piques my interest, I&#8217;ll probably pause what I&#8217;m doing and get engaged with it for a little moment.</p>\n\n\n\n<p>But also equally, I could be giving it my full attention whilst I&#8217;m carrying out some household chores, it could be vacuuming the floor or something. And that requires almost no cognitive ability from me at all. And I do that quite a lot and I&#8217;m, I&#8217;m really engaged in it. And so you don&#8217;t have to be, as you would be for a, a piece of video content, you don&#8217;t have to apply all thought towards it.</p>\n\n\n\n<p>Things can be going on at the same time. In particular, as you said, things like commuting. It&#8217;s the perfect time to have audio content, because most people are probably throwing on the car stereo at some point anyway, so. Yeah. That&#8217;s really interesting.</p>\n\n\n\n<p>Do you see this as an avenue, in terms of WordPress website builds, do you see this as a growing avenue for let&#8217;s say agencies or freelancers, as an area that they can bolster their offering to their clients. At the moment they can say things like, we can build you a website. We can offer you a care plan. We can do the maintenance, we can do SEO and so on. Do you think people are more frequently asking, can you do me a podcast? What benefit could I get from a podcast?</p>\n\n\n\n<p>[00:16:26] <strong>Joe Casabona:</strong> Yeah, I&#8217;m not the best marketer. And I get these inquiries. I have a couple of clients for whom I produce podcasts. But even from the WordPress side, right, I think more podcasters are realizing they need a good website for their podcast. And I think, even if we&#8217;re not looking at independent podcasters, you know, who are more reluctant to spend money at first, because there isn&#8217;t a real, tangible cost associated with podcasting from the very beginning.</p>\n\n\n\n<p>But you have agencies and institutions who are like, maybe we should have a podcast. Building a good website around that is going to be important to them, especially if they want to offer something to their members or their employees, or their students, where there is some sort of privacy aspect involved.</p>\n\n\n\n<p>[00:17:16] <strong>Nathan Wrigley:</strong> Yeah, you mentioned privacy or private podcasts. Perhaps people who don&#8217;t listen to podcasts or, like us, are habitual about podcasting. Just tell us what a private podcast is. Because it&#8217;s a whole different area of podcasting that many people don&#8217;t even know about.</p>\n\n\n\n<p>[00:17:31] <strong>Joe Casabona:</strong> Private podcasting, I guess if I&#8217;m going to generalize the definition, it is a podcast for which you control access to. So for me, I have a private podcast called build something more. That is for my members. They get add free extended episodes of my podcast, but they also get, on Fridays, an episode called the weekly wrap, where I just tell them what I worked on this week. And some of my struggles, some of my wins, and it&#8217;s a 15 minute or so update for just my members. But as you mentioned, a private podcast could also be a company only podcast, right? Where maybe the CEO is talking about their roadmap for the next quarter.</p>\n\n\n\n<p>And that&#8217;s not necessarily public information, but he still wants, or he or she wants to disseminate that information to the employees. A podcast could be a great way to do that. If you have a classroom based podcast, that&#8217;s the same thing, right? You&#8217;re putting out lessons that you don&#8217;t want the whole world to hear. Maybe you&#8217;re communicating with student feedback or something like that. That could be a private podcast as well.</p>\n\n\n\n<p>[00:18:36] <strong>Nathan Wrigley:</strong> Yeah. Okay. Thank you. That&#8217;s cleared that up. In terms of growth of podcasts, it feels like there&#8217;s been more or less exponential growth in the last few years. If we rewind the clock, maybe ten or eight years, they existed, but they were fairly niche. You probably had to sit at a device and then along comes the iPod and changes all of that. And then after that along comes the iPhone and smartphones in general. And all of a sudden, this stuff is just in your pocket. It&#8217;s completely there all the time. It&#8217;s a device which you are more or less guaranteed to hold during the time that you&#8217;re awake.</p>\n\n\n\n<p>So it felt like it was getting bigger and bigger and bigger. And everybody seems to be jumping on the bandwagon. Do you have any, any insight into whether or not that&#8217;s still the case. In other words, if today is the moment that you&#8217;re thinking about a podcast, you would want to be thinking, okay, it&#8217;s a growing medium. I want to hop on whilst it&#8217;s still growing, but maybe that&#8217;s not the case. Maybe it&#8217;s in decline.</p>\n\n\n\n<p>[00:19:34] <strong>Joe Casabona:</strong> Yeah, really interesting question. And I think as with anything with data, you could probably twist the stats to tell your own story, but Edison research is a organization that does a lot of different kinds of stats. They&#8217;ll do like a thing called terrestrial radio as well. They&#8217;ll do general content consumption by household, but, they have a report called the infinite dial, where they look at listening habits and podcasts specifically. Right? So for example, smartphone ownership grew by about 250 million over the last couple of years. Internet connected watch owners and they have all the, all of these stats.</p>\n\n\n\n<p>But one of the stats is podcasting. How many people are listening to podcasts? How many people are aware that podcasting is a thing. And for the first time, since they were doing this study it is I think monthly or weekly listenership decreased. I&#8217;m trying to find the stat. I wish I had it up, but it was all a buzz when they announced it in March, that for the first time podcast consumption went down.</p>\n\n\n\n<p>[00:20:40] <strong>Nathan Wrigley:</strong> It feels like there&#8217;s always going to be a moment in any market where it has plateaued, but it feels as if the threshold which we&#8217;ve reached is still more or less everybody. It still feels like there&#8217;s plenty of audience to share around, and the sky is not necessarily falling in just because in the more recent past the numbers haven&#8217;t kept growing. I think in our pre-recording chat you mentioned that there might be some kind of COVID pandemic data that explains that a little bit better.</p>\n\n\n\n<p>[00:21:10] <strong>Joe Casabona:</strong> Yeah, that&#8217;s exactly right. Honestly, I&#8217;m looking through this data right now and I cannot find, oh, monthly podcasts listening went down from 41 percent to 38 percent from 21 to 22, it looks like. Yeah, a small decrease. And what happened in that time? The world opened up again, right.</p>\n\n\n\n<p>Because again, from 19 to 20, we saw a 5 percent increase. From 20 to 21, we saw a 4 percent increase. So if we compare 20 to 22, we see a 1 percent increase. People are going back to their normal lives. What is the more interesting stat to me is around awareness. A lot more people are aware that podcasting is a thing. A lot more people are listening to more than one podcast now.</p>\n\n\n\n<p>So yeah, maybe I&#8217;m listening to fewer podcasts on a monthly basis than I was a year ago, but that doesn&#8217;t mean that podcasting is decreasing in popularity. And on that same token, podcasting has not hit critical mass yet. There&#8217;s 2.2 million podcasts only about, I think it&#8217;s something like less than half of them are active. And so we have 38 million YouTube channels, you tell me is podcasting has podcasting hit max capacity yet?</p>\n\n\n\n<p>[00:22:37] <strong>Nathan Wrigley:</strong> Yeah, it certainly feels to me as if there&#8217;s lots more growth. And it&#8217;s curious, the sort of up and down of the last couple of years, and there definitely seems to be some data points, which explain maybe the more recent dip, because life is going back to normal.</p>\n\n\n\n<p>If somebody is listening to this, and they think to themselves, wow, I really must make time for this. I&#8217;ve finally been persuaded. I&#8217;m going to do my podcast. Regardless of the subject, let&#8217;s get into the tooling that&#8217;s needed. And first of all, let&#8217;s stay away from, let&#8217;s just stay right away from WordPress and just concentrate on the things that you would need in your life if you were to become a podcaster.</p>\n\n\n\n<p>And now we don&#8217;t need to go to the extremity of all of the different bits and pieces, but at the very basics, what would you say would be the essential and then maybe we can go onto the more that would be desirable. So let&#8217;s start with the essential stuff. What is needed to do a podcast?</p>\n\n\n\n<p>[00:23:28] <strong>Joe Casabona:</strong> I think that you need four things to do a podcast, excluding your voice, right. That would be number five. I guess that&#8217;d be number one. Really? You need a not built in microphone, right? So you will see blog posts they&#8217;re like what microphone should you get? Should you buy the Shure SM7B? Every podcaster that you see on a TV show has the Shure SM7B, and I assure you as someone who&#8217;s speaking into one right now, you don&#8217;t need that. You can spend 50 bucks or 40 bucks and get a decent built in microphone because you&#8217;re not singing, probably. You&#8217;re talking. So you just need something that has reasonable noise rejection, that has a dedicated function for capturing your voice.</p>\n\n\n\n<p>You also need headphones. There are going to be people who say, I don&#8217;t need headphones. I&#8217;ve done podcasts without headphones and it&#8217;s, it&#8217;s fine. It&#8217;s not fine. What happened was the person whose podcast you went on was too polite to ask you to put on headphones, and then too polite to tell you that the recording sounded like crap.</p>\n\n\n\n<p>You need headphones, because if you don&#8217;t, you&#8217;re going to get a lot of interference. So mic, headphones, that&#8217;s one and two. Three is a way to record. Luckily, whatever device you are consuming this podcast on has a way to record. It could be Quicktime on a Mac. It could be Windows Recorder on Windows, or your phones have recording apps as well. Heck the iPhone has like a version of Garage Band I think you can use.</p>\n\n\n\n<p>And then you need an audio host. We&#8217;ll probably get into audio host recommendations later, but you can&#8217;t just throw an MP3 up in your WordPress media library and call it a day. You need a dedicated audio host for a bunch of reasons.</p>\n\n\n\n<p>[00:25:14] <strong>Nathan Wrigley:</strong> Just develop that further. I mean, we all know what a WordPress website host is and the reasons why you wouldn&#8217;t put your WordPress website on your home computer, unless you were really skilled and knew what you were doing. What&#8217;s the purpose of a host, and why is that an essential component?</p>\n\n\n\n<p>[00:25:27] <strong>Joe Casabona:</strong> Yeah. So I&#8217;ll put it to you this way, right? If you wanted to travel across your country, whatever country you happen to be in. You could put on like those 1970s roller skates, right? With the four wheels on each side of the shoe. Or you could get a bicycle, which one of those sounds better?</p>\n\n\n\n<p>Or in the United States, like biking across the country sounds terrible to me, but some people do it. I&#8217;d probably want a car or a plane. So if you want to put your audio online, technically you can just upload it to any old server, but you want a server that specializes in serving audio, just like YouTube or Vimeo or not just any old video hosting providers, right.</p>\n\n\n\n<p>They do a lot of things behind the scenes to make sure that people are getting those videos served up quickly and efficiently. And it&#8217;s the same thing for an audio host. They do a lot of things behind the scenes to make sure your audio is available and that stats are being captured on it. And that If maybe one server crashes, they have redundancy, right? There are things in place that audio hosts do that general hosts will not do.</p>\n\n\n\n<p>[00:26:39] <strong>Nathan Wrigley:</strong> They also compile something called an RSS feed, and WordPress users were really familiar with this, but there is a particular type of RSS feed which needs to be consumed by a podcast player. And they also typically take that heavy lifting as well, so that when you subscribe to the podcast, it comes with all of the album art and all of the episode descriptions and all of that. So, yeah, highly recommended to look into that.</p>\n\n\n\n<p>In terms of then things which you quite like. So it&#8217;s no longer the four essential things. What about some of the things which you found to be quite useful although not necessary.</p>\n\n\n\n<p>[00:27:13] <strong>Joe Casabona:</strong> Okay. So strictly gear I, heavy caveat here, that I love tech and gear and I go overboard right? But I do have a fancy microphone, and I have something called the Rodecastor Pro. This is a 500 or $600 device that allows me to capture audio from multiple channels, and sound effects, et cetera.</p>\n\n\n\n<p>What I like about the Rodecaster Pro is it&#8217;s a soundboard built for podcasts. I have a couple of mikes plugged into it and they&#8217;re all dialed in based on the microphone. So I sound good, no matter which one I use, and it allows me to do things like monitor my audio. You can even record audio directly onto the hardware. That&#8217;s a piece of hardware I really like.</p>\n\n\n\n<p>If you&#8217;re thinking, look, I want to sound better than just a regular old USB microphone. Then you can get an XLR microphone and you can get the Focusrite Scarlett Solo, which is a interface that allows you to plug an XLR microphone basically into your computer. Those are two things that I think if you&#8217;re looking to upgrade, that&#8217;s a good place to start.</p>\n\n\n\n<p>The rest of my podcast gear, I mean, the rest of my recording gear honestly is more around live streaming. I guess the other kind of piece of gear I really like, I have a Zoom recorder, the Zoom H5, which is like a portable kind of podcast recorder that you could again, plug an XLR microphone into. And when I&#8217;m quote unquote on location, usually on location means at my parents&#8217; house. I&#8217;ll use that to record.</p>\n\n\n\n<p>[00:28:46] <strong>Nathan Wrigley:</strong> What about the software? Do you obsess about that in the same way? Do you download the most expensive audio software that money can buy or do you just go for some of the freely available stuff like Audacity?</p>\n\n\n\n<p>[00:28:57] <strong>Joe Casabona:</strong> Yeah, I&#8217;m actually, I&#8217;m recording this on my end into garage band, which just comes with the Mac. As far as other software goes uh, you know, something I forgot to mention in the hardware, is the Stream Deck. Again, that&#8217;s not something I think about with podcasting, but there&#8217;s a lot of stuff for podcasting on my Stream Deck.</p>\n\n\n\n<p>Maybe that&#8217;s another piece of gear that&#8217;s really interesting, and we can talk about that if there&#8217;s time later, but, as far as the software goes, I use riverside.fm to record. Of all of the online recording platforms that get good audio from your guests. That&#8217;s the one I&#8217;ve liked the best. I like having video on, cause I like seeing my guest. Again, riverside.fm is a really good tool for that full disclosure, they have sponsored my podcast in the past.</p>\n\n\n\n<p>[00:29:45] <strong>Nathan Wrigley:</strong> So these days it&#8217;s fair to say that there are basically tools which live inside the browser. You now no longer need to be using an app like Skype or something like that. You can connect with multiple guests, dozens potentially through browser based solutions, and Riverside.fm is one of them, and there&#8217;s a whole tranche of them and they all seem to have similar feature parity, but that&#8217;s the one that you&#8217;ve chosen.</p>\n\n\n\n<p>Let&#8217;s flip to the website side of things. It&#8217;s a WordPress podcast. There is going to be things that we would like to implement on our website. What makes a good podcasting website? Now that could be the way it looks. It could be the plugins that you&#8217;re putting in there. It could be lead capture, anything like that, that you want to discuss.</p>\n\n\n\n<p>[00:30:29] <strong>Joe Casabona:</strong> Yeah. So that&#8217;s a great question right. And I think, so I think what a lot of podcasters suffer from is a weak call to action, right? They&#8217;ll say subscribe in Apple podcasts or wherever you get your podcast right. First of all, if people are using a podcast app and they already know that, right? They know how to get your podcasts.</p>\n\n\n\n<p>What I like is having a call to action for my website. So my call to action will always be, you know, go visit URL slash episode number. And there you can get all the show notes, you can get a transcript and you can get this thing I&#8217;m offering. If you give me your email address, whatever that happens to be. Your website serves as the canonical place for all people to go, no matter what platform they&#8217;re using to get more information about your podcast.</p>\n\n\n\n<p>So, this is again, kind of like mission-based right. Why are you starting a podcast? If you&#8217;re starting it to have sponsors, then great. You could have a good section for sponsors. And I have, I have a page where I don&#8217;t know if this is the case anymore cause I had to like quickly redesign it because there was something wrong with something I was using.</p>\n\n\n\n<p>But for awhile, if you visited a sponsor page, it would list all of the episodes they sponsored. Right. I should probably turn that back on. So you can make it really nice for your sponsors. You can add transcripts in a way that works really nicely. And I, again, I just updated my website. I have a custom post type for transcripts, and instead of when somebody searches my site, if they come across a word in the transcript, they don&#8217;t go to the transcript or they go to the episode page, right. There&#8217;s like a little magic you can do with Search WP to make that happen. So it depends on what you want. But using WordPress as I&#8217;m sure everybody listening knows gives you a lot of flexibility, sponsors, merch.</p>\n\n\n\n<p>If it&#8217;s your agency say, you can just, you can add a podcast feed using the right plugin. Directing people to your podcast website allows you to get a better return, let&#8217;s say, on your investment. Especially if you&#8217;re an agency or a freelancer who is doing this to open up more avenues of income.</p>\n\n\n\n<p>[00:32:28] <strong>Nathan Wrigley:</strong> Yeah. it&#8217;s the same piece that we&#8217;ve used for the longest time when building websites, just for clients. You are in control of the content. And if you choose to go for the default website, which would be built potentially by your podcast host, you really aren&#8217;t in control of that. Things could go wrong. There could be an outage, they could go out of business. You may just decide that you wish to leave them and so on. Whereas if you&#8217;ve got all of that on your own domain and you&#8217;re running it and owning it, I completely concur. I just think that&#8217;s the best way to do it. You can do what you like.</p>\n\n\n\n<p>And, It is true to say that typically, if you go to a podcast host website, the usual ones that have nothing to do with WordPress, they will offer the functionality for a basic website. Do you just want to outline why there&#8217;s drawbacks there, you know, in terms of the options to customize it, and also the things that, all of the clever things that you just mentioned, presumably they&#8217;re all out of the window. You can&#8217;t modify, customize, update it as you would change the layout and so on.</p>\n\n\n\n<p>[00:33:34] <strong>Joe Casabona:</strong> Yeah. Most of them are just terrible. They look terrible. They don&#8217;t work well. I&#8217;ve seen some where like, you don&#8217;t even get an episode specific link. Right. It&#8217;s just like, all the episodes are like listed in line on a single page. That&#8217;s not great. And then, yeah, you can&#8217;t really customize anything.</p>\n\n\n\n<p>I think the best implementation I&#8217;ve seen is Castos. They rolled out their like website templates. And even those are pretty limited. If you have nothing Castos is a lot better, but you can&#8217;t bolt a e-commerce option on to any of those, right. Or you can&#8217;t when somebody becomes a member, right? Maybe you want them to get a member RSS feed and integrate your podcasts into that. That&#8217;s a lot easier to do on WordPress. Or you can&#8217;t have an account area in general for any private podcast if you&#8217;re using the audio hosts implementation.</p>\n\n\n\n<p>You&#8217;re just locked in, in a lot of ways. You&#8217;re limited in your show notes. You&#8217;re limited in what you can do with sponsor stuff. And so it&#8217;s probably better than nothing, but I am fully confident that the reason that my show grew so much over the first couple of years was because I had a good website right off the bat.</p>\n\n\n\n<p>[00:34:49] <strong>Nathan Wrigley:</strong> If you are literally just going for audio, then I think an audio host is fine, but if you want to have anything ancillary to just the audio, if you want to put any words on pages or any images that might attach themselves to that or any upsells, then I, think you&#8217;ve got to stray away because it&#8217;s almost like the podcast has got the memo about a website five years after it was needed. I&#8217;ve yet to find a podcast host where the website isn&#8217;t something that you could put together with WordPress in a matter of moments.</p>\n\n\n\n<p>Let&#8217;s go to some recommendations for podcast hosts, which are WordPress specific. Now, I&#8217;ve come across one, as it happens. There may be many, but the one that I&#8217;ve used before is called Castos, and they&#8217;re quite unique, in that they allow you to do all the things inside of WordPress and you literally don&#8217;t need to go away and visit a podcast house. It&#8217;s all happening as metadata. Just explain how that works.</p>\n\n\n\n<p>[00:35:49] <strong>Joe Casabona:</strong> Yeah as far as I know unless a new host has entered the scene recently, Castos is the only kind of WordPress based podcast host. And you can do it both ways, which is a little bit confusing if I&#8217;m being honest. But, if you tell Casto is I&#8217;m managing my podcast completely from WordPress, you can do everything from there, upload the audio, it&#8217;ll send it to Casto&#8217;s server. Update the title and description and on the Castos end, everything will get sinked.</p>\n\n\n\n<p>And so you can manage your whole podcast from WordPress in a custom post type for podcasts. You can say, I want this in the main feed or not. So you can have a completely separate section for your podcast. And it just it makes everything a lot easier, right, because when I was not on Castos, I would have to. Well, I set up an automation to do this eventually, but it was like, what if this breaks, and my whole podcast goes down or whatever, but I&#8217;d have to upload the audio to Libsyn. That&#8217;s what I was using. Libsyn was the big dog for a while, but then they rested on their laurels and now they&#8217;re really not good at all. They were really good in like 2002. But it&#8217;s not 2002 anymore.</p>\n\n\n\n<p>And so I&#8217;d have to go there, upload, copy the audio URL, right? The audio files URL. Paste it into a different podcast plugin I was using. And the whole process was just like womp or like it took so much time. And so if you&#8217;re using Castos, this sounds like a commercial for Castos, but Castos is the only one who does this. This is their competitive edge. Then you don&#8217;t have to do all that. You can do everything from the dashboard, from your WordPress admin. And you&#8217;re not going around into a bunch of different places.</p>\n\n\n\n<p>[00:37:22] <strong>Nathan Wrigley:</strong> Yeah. So you are basically saving yourself a little bit of time and yes, caveats, everything that we have described on the Castos side can be achieved. There&#8217;s just more little intermediate steps. Like you said, you have to go over here, and upload the file and then paste maybe an iframe or something like that into your Gutenberg posts or whatever. It&#8217;s just stuff you&#8217;ve got to do.</p>\n\n\n\n<p>[00:37:43] <strong>Joe Casabona:</strong> Yeah, like maybe Bluberry is another podcast host, like maybe they have this integration because I think the biggest competitor to Casto&#8217;s plugin, which is Seriously Simple Podcasting is PowerPress, which is Bluberry&#8217;s offering. But I still don&#8217;t think anybody does it as well as Castos.</p>\n\n\n\n<p>[00:37:58] <strong>Nathan Wrigley:</strong> So we&#8217;ve made the case for having a podcast, the different use cases. We&#8217;ve described some of the tech that you might have, on the WordPress side and the tech that you might own in the physical world as well, the bits and pieces, the microphones and so on. Just curious to know if you&#8217;ve over the years that you&#8217;ve been podcasting, if you&#8217;ve had any aha moments where you&#8217;ve suddenly strayed into something and thought, boy, why have I not been doing this for a while? Anything that you&#8217;ve figured out. Top tips that may save our audience sometimes, should they decide to podcast..</p>\n\n\n\n<p>[00:38:31] <strong>Joe Casabona:</strong> Yeah, this is not necessarily the process of podcasting, but build your email list. Because what you&#8217;ll learn quickly is podcasting feels a lot like a one-way street. You&#8217;re talking into a microphone, the vast majority of people who are listening, probably aren&#8217;t engaging, but if people sign up for your mailing list, now you have direct access to them.</p>\n\n\n\n<p>You can put names with listeners and engage with them on a deeper level. So I would say build your email list right off the bat. That&#8217;s something I didn&#8217;t do for years and it hurt me. I think the other thing that a lot of podcasts was making a mistake about is. Again, I mentioned it earlier, but have a clear call to action, right? Because usually what podcasters, myself included, will do is say, rate us and review us on Apple podcasts or wherever you get your podcasts, subscribe wherever you get your podcasts. If you want to learn more about this, go here. And that&#8217;s too many things, especially for somebody who&#8217;s probably not fully paying attention.</p>\n\n\n\n<p>Instead, say, hey, join my mailing list. You can sign up at the show notes page over at wp tavern.com slash whatever. There you&#8217;ll also find all of the show notes for everything that we talked about. Then mention it again in the middle of the episode. Hey, by the way, you can find all of the show notes and sign up for my newsletter over at blah blah.</p>\n\n\n\n<p>And then at the end where your call to action will be. And the great part about that is that you can have a link to rate and review wherever. You can have the subscribe buttons. And in the email newsletters that you send out every week with the new episodes or every two weeks with the new episodes, you can have links to rate and review, to subscribe, to check out this new ebook I launched. You can have early access if you want. There&#8217;s a lot of things that I think when people first start podcasting, they&#8217;re really focused on, all right, I need to sound good, I need to make it good, I need to launch it. But these ancillary actions are the things that become the base for which your podcast business or your podcast income is based off of.</p>\n\n\n\n<p>[00:40:30] <strong>Nathan Wrigley:</strong> Now you&#8217;re obviously very bullish about podcasting. You&#8217;ve really made it your life in more recent times. Just curious as to whether or not that is relentlessly the case. If we were to cast the net a little bit wider and go back five or six years, have you got any cautionary tales about the usual thing that begins when people begin to a project like this.</p>\n\n\n\n<p>It&#8217;s all roses and everything is sparkly and new, and you&#8217;re fascinated by the process. And perhaps it&#8217;s not as easy, perhaps there is a bit of grinds to this as well. So just wondering if you had any thoughts about that.</p>\n\n\n\n<p>[00:41:01] <strong>Joe Casabona:</strong> Yeah, it definitely is a grind. It&#8217;s work. And the thing that made it less like work for me in the beginning is I am an extrovert. I love having conversations with people. In an increasingly remote world, I&#8217;m seeing people less and less. A friend from high school who lives in my area now invited me to get a beer on Thursday and there were like several hurdles to that. And my wife was like do you want to see him? And I was like, I want to see almost anybody I&#8217;m not blood related to you right now. Like I just miss seeing people. That&#8217;s not a knock on my family, of course. I like the human connection.</p>\n\n\n\n<p>And so what made it feel less like work for me was I got to have conversations. I&#8217;m passionate about those conversations and when you&#8217;re starting a podcast, again, it goes back to that first question you asked me, like, why shouldn&#8217;t somebody start a podcast? If you&#8217;re just doing it for the money and the glory. You&#8217;re in for a long, frustrating ride.</p>\n\n\n\n<p>But if you&#8217;re doing it because you want to tell the world about this thing that you&#8217;re super passionate about, then yeah, it&#8217;s a grind, but it&#8217;s a grind where you get to talk about this thing that you love. And that is what&#8217;s going to make an audience connect with you, and that is what&#8217;s going to get your podcast to grow.</p>\n\n\n\n<p>[00:42:12] <strong>Nathan Wrigley:</strong> I love it. That&#8217;s a really perfect place to end the interview, but I don&#8217;t want to end quite there because I want to give you an opportunity to tell us a little bit about where we can find you. So yeah, exactly that the opportunity now to give us your Twitter feed or your email address, or possibly a website.</p>\n\n\n\n<p>[00:42:29] <strong>Joe Casabona:</strong> Yes. So if you are interested in my podcast specific services and content, you can go to podcast liftoff dot com, and you can find everything podcast related I&#8217;m doing there. If you&#8217;re generally interested in the stuff I&#8217;m doing whether it&#8217;s WordPress or anything else that we have, or haven&#8217;t talked about, you can go to casabona dot org. You&#8217;ll find everywhere I am and links to Twitter and all that fun stuff.</p>\n\n\n\n<p>[00:42:51] <strong>Nathan Wrigley:</strong> Joe Casabona, thank you for joining me on the podcast today. I really appreciate it.</p>\n\n\n\n<p>[00:42:55] <strong>Joe Casabona:</strong> My pleasure, Nathan. Thanks for having me.</p>\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 04 May 2022 14:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:114:\"HeroPress: The pleasure of being a part of a community – Щастя бути частиною спільноти\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=4479\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:160:\"https://heropress.com/essays/the-pleasure-of-being-a-part-of-a-community/#utm_source=rss&utm_medium=rss&utm_campaign=the-pleasure-of-being-a-part-of-a-community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:15729:\"<img width=\"1024\" height=\"512\" src=\"https://heropress.com/wp-content/uploads/2022/05/050322-min.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: Every contribution, big or small, makes WordPress better.\" />\n<p><a href=\"https://heropress.com/feed/#ukranian\">Це есе також доступно українською.</a></p>\n\n\n\n<p>Hey there! My name is Artemy, and I am from Ukraine. I’ve been working with WordPress since 2018. I specialize in WordPress backend development: I build and support WordPress plugins, third-party integrations, and other cool custom features.</p>\n\n\n\n<p>If you ask me why I love WordPress and why I decided to stick with it, my answer is <strong>the community</strong>. There are a lot of different CMS written in PHP and other languages. Still, I don’t know any other CMS with such an active, responsive and enthusiastic community.</p>\n\n\n\n<p>So in this post, I want to tell you how I became a part of this community. And I hope this post will encourage someone to do the same.</p>\n\n\n\n<h2 id=\"h-how-it-started\">How it started</h2>\n\n\n\n<p>I vividly remember my first WordPress experience: I was confused, had many questions, and was desperately trying to understand how to do the most simple things.</p>\n\n\n\n<p>Back in those days, I was an intern in a small agency in Zaporizhzhya, my hometown. I had basic HTML/CSS skills, and I just started learning PHP development. My senior colleagues helped me take my first steps in web development. They gave me some simple tasks, and I was annoying them with questions.</p>\n\n\n\n<p>One day, the agency’s director came to me and told me that I’d be responsible for creating a WordPress website for his friend. It was a big surprise for me, and I was like: “<em>Man, I barely know PHP; how would that go?</em>”. But he just said, “Don’t<em> worry, you’ll figure everything out as you go</em>.”</p>\n\n\n\n<p>Well, he was right. It took some time, though.</p>\n\n\n\n<h2 id=\"h-my-first-wordpress-experience\">My first WordPress experience</h2>\n\n\n\n<p>So that’s how I started experimenting with WordPress. My senior colleagues were busy with their own projects, so I had to find answers on my own.</p>\n\n\n\n<p>The first WordPress theme I built was awful. It was a wild Frankenstein composed of my own “creative” solutions and code snippets I googled somewhere. It worked like crap; it had a lot of bugs, but as people say, “<em>the first pancake is always a bit tricky</em>.”</p>\n\n\n\n<p>No matter how bad it was, it was my first experience, and I learned a lot about the basic concepts of WordPress. That’s why I believe that learning by doing is the best way to learn something new.</p>\n\n\n\n<p><strong>Moral: </strong>don’t be afraid of doing something awful when you create something for the first time. It’s okay; we’ve all been through this.</p>\n\n\n\n<h2 id=\"h-why-i-think-that-wordpress-is-one-of-the-best-options-for-beginners\">Why I think that WordPress is one of the best options for beginners</h2>\n\n\n\n<p>It’s nice to have a mentor when you learn something new. Luckily, you don’t need a person sitting next to you anymore. All of us have got the best mentor possible: the Internet. You don’t know how to do something? Try to google it.</p>\n\n\n\n<p>No wonder some say that one of the most required skills of every developer is to know how to search for information. And from this point of view, WordPress is one of the best options for beginners.</p>\n\n\n\n<p>Why?</p>\n\n\n\n<p>Because when you stumble upon a problem, there’s a high probability that someone already asked the same question on StackOverflow. Or on WordPress Stack Exchange. Or on one of the dozens of other forums.</p>\n\n\n\n<p>If you’re lucky enough, someone already wrote a post about your problem with a great explanation of how to solve it with examples and code snippets.</p>\n\n\n\n<p>And that’s the most wonderful thing about the WordPress community: we are not selfish. WordPress is an open-source project, so there are a lot of free code and snippets anyone can use.</p>\n\n\n\n<p>At some point, I became very grateful to all of these people that wrote answers on StackOverflow, wrote blog posts, created free plugins, and other helpful stuff. Hence, I decided to help other people when I’d be able to.&nbsp;</p>\n\n\n\n<p>And today, I’m happy to be a part of this community as well.</p>\n\n\n\n<h2 id=\"h-how-i-contribute-to-the-wordpress-community\">How I contribute to the WordPress community</h2>\n\n\n\n<p>In August 2021, I started blogging about WordPress on my website: <a href=\"https://kayart.dev/\">https://kayart.dev/</a></p>\n\n\n\n<p>I like to think that this way I’m repaying my karmic debts for all the content I have consumed. And it makes me happy to see that people really read my posts, and it helps them solve their WordPress problems.</p>\n\n\n\n<p>So today, when I face a problem and can’t find the solution, I think: “Well, it might be a great idea for a new post!”.</p>\n\n\n\n<p>Also, I visit StackOverflow, WordPress-related Facebook groups, and other communities where people ask their questions almost every day. Sometimes I find some nice ideas for new content there; sometimes, I help people figure their problems out.</p>\n\n\n\n<h2 id=\"h-every-community-is-a-two-way-street\">Every community is a two-way street</h2>\n\n\n\n<p>I encourage everyone to become a part of the WordPress community. There are a lot of opportunities for everyone.&nbsp;</p>\n\n\n\n<p>You can help with the translation of your favorite plugins or themes. You can create your own plugin or become a contributor to an already existing open-source plugin. You can write tutorials. You can write reviews helping other people to choose the best option for them. You can help people on support forums.</p>\n\n\n\n<p>Every contribution, big or small, makes WordPress better. Isn’t it great to understand that you’re a part of it?</p>\n\n\n\n<p>Anyways, thank you for reading my story. If I inspired you to start contributing to our community, please, write me a DM on Twitter or email me about this.&nbsp;</p>\n\n\n\n<p>Good luck!</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p></p>\n\n\n\n<h1 id=\"ukranian\">Щастя бути частиною спільноти</h1>\n\n\n\n<p>Привіт! Мене звати Артемій, я з України. Я працюю з WordPress з 2018 року. Я спеціалізуюсь на backend-розробці для WordPress: створюю та підтримую плагіни для WordPress, сторонні інтеграції, та інші прикольні додаткові фічі.</p>\n\n\n\n<p>Якщо ви б спитали мене, чому я люблю WordPress та чому вирішив працювати саме з ним, моя відповідь &#8211; це <strong>спільнота</strong>. Існує безліч CMS написаних на PHP та інших язиках. Але я не знаю жодної CMS з такою ж активною, чуткою та сповненою ентузіазму спільнотою.</p>\n\n\n\n<p>Тому в цьому пості я хочу розповісти, як я став частиною цієї спільноти. І я сподіваюсь, що цей пост надихне когось зробити те ж саме.</p>\n\n\n\n<h2>Як все почалося</h2>\n\n\n\n<p>Я добре пам&#8217;ятаю свій перший досвід роботи з WordPress: я був розгублений, в мене була купа питань, і я відчайдушно намагався зрозуміти, як робити найпростіші речі.</p>\n\n\n\n<p>В ті дні я був стажером в маленькому агентстві в Запоріжжі, моєму рідному місті. В мене були базові навички HTML/CSS і я тільки-но почав вчитися&nbsp; PHP-розробці. Мої старші колеги допомагали мені робити перші кроки в веб-розробці. Вони давали мені простенькі задачки, а я надокучував їм своїми питаннями.</p>\n\n\n\n<p>Одного дня прийшов директор і сказав мені, що я буду відповідати за створення сайту на WordPress для його товариша. Я був здивований і міг лише сказати щось на кшталт: “<em>Чуваче, я ледь знаю PHP; як ти собі це уявляєш?</em>”. На що він відповів: “<em>Не парься, розберешся по ходу справи</em>.”</p>\n\n\n\n<p>Ну, він був правий. Але для цього був потрібен час.</p>\n\n\n\n<h2>Мій перший досвід роботи з WordPress</h2>\n\n\n\n<p>То ж так я почав свої експерименти з WordPress. Мої старші колеги були зайняті своїми власними проектами, тому мені доводилось шукати відповіді самостійно.</p>\n\n\n\n<p>Перша тема для WordPress, яку я створив, була просто жахлива. Це був якийсь дикий Франкенштейн, створений з моїх власних “креативних” рішень та коду, який мені вдалось нагуглити. Працювало все не менш жахливо; була ціла туча багів, але як то кажуть: “<em>перший млинець нанівець</em>”.</p>\n\n\n\n<p>Незважаючи на те, якою поганою вона була, це був мій перший досвід, завдяки якому я багато дізнався про базові концепції WordPress. Ось чому я вірю, що кращий спосіб вивчити щось нове – це навчатися на практиці.</p>\n\n\n\n<p><strong>Мораль: </strong>не бійтеся зробити щось жахливо, коли ви робите щось вперше. Це цілком нормально, ми всі через це проходили.</p>\n\n\n\n<h2>Чому я вважаю, що WordPress – це один з найкращих варіантів для новачків</h2>\n\n\n\n<p>Круто мати ментора, коли ти вчиш щось нове. На щастя, вам сьогодні не потрібно, щоб поряд з вами сиділа якась людина. В кожного з нас є найкращій з можливих менторів: інтернет. Не знаєш, як щось зробити? Спробуй загуглити.</p>\n\n\n\n<p>Не дивно, що одна з найпотрібніших навичок для кожного розробника – це вміння шукати інформацію. З цієї точки зору, WordPress – це один з найкращих варіантів для новачка.</p>\n\n\n\n<p>Чому?</p>\n\n\n\n<p>Тому що, коли ви стикаєтеся з проблемою, існує велика ймовірність, що хтось вже ставив таке ж саме питання на StackOverflow. Або на WordPress Stack Exchange. Або на іншому з десятків форумів.</p>\n\n\n\n<p>Якщо ж вам дуже пощастить, хтось вже написав цілий пост про вашу проблему з чудовим поясненням, як її вирішити з прикладами та готовим кодом.</p>\n\n\n\n<p>І це найдивовижніший факт про про спільноту WordPress: ми не егоїсти. WordPress – це open-source проект, тому тут існує багато вже готового та безкоштовного коду, який може використовувати кожен бажаючий.</p>\n\n\n\n<p>В якийсь момент я став настільки вдячний всім тим людям, хто писав відповіді на StackOverflow, вів блоги, створював плагіни та робив інші корисні речі. Тому я вирішив також допомагати людям, коли зможу це робити.</p>\n\n\n\n<p>Сьогодні я щасливий також бучи частиною цієї спільноти.</p>\n\n\n\n<h2>Як я приймаю участь в спільноті WordPress</h2>\n\n\n\n<p>В серпні 2021 року я почав вести блог про WordPress на моєму сайті: <a href=\"https://kayart.dev/\">https://kayart.dev/</a></p>\n\n\n\n<p>Мені подобається думати, що таким чином я віддаю свій кармічний борг за весь той контент, яким я користувався. Я щасливий бачити, що люди читають мої пости та що вони допомагають їм вирішувати їх проблеми, пов&#8217;язані з WordPress.</p>\n\n\n\n<p>Тому сьогодні, коли я стикаюсь з проблемой та не можу найти її рішення, я думаю: “Що ж, це може бути чудовою ідеєю для нового поста!”.</p>\n\n\n\n<p>Також я читаю StackOverflow, Facebook-групи про WordPress та інші спільноти, де люди ставлять питання майже кожень день. Іноді я знаходжу тут класні ідеї для нового контенту; іноді допомагаю людям вирішити їхні проблеми.</p>\n\n\n\n<h2>Кожна спільнота має бути двосторонньою вулицею</h2>\n\n\n\n<p>Я закликаю вас ставати частиною WordPress-спільноти. Тут кожен зможе застосувати свої вміння.</p>\n\n\n\n<p>Ви можете допомагати з перекладом ваших улюблених плагінів або тем. Ви можете створювати власні плагіни або допомогти з розробкою вже існуючих open-source проектів. Ви можете писати туторіали. Ви можете писати рецензії, допомагаючи іншим людям з вибором найкращого варіанту. Ви можете допомагати людям на форумах підтримки.</p>\n\n\n\n<p>Кожен внесок, будь він великим чи малим, робить WordPress краще. Чи не круто розуміти, що ти є частиною цього?</p>\n\n\n\n<p>Так чи інакше, дякую вам, що прочитали мою історію. Якщо я надихнув вас почати робити внесок в спільноту WordPress, будь ласка, напишіть мені повідомлення у Twitter або надішліть мені імейл про це.&nbsp;</p>\n\n\n\n<p>Нехай щастить!</p>\n<p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/the-pleasure-of-being-a-part-of-a-community/\">The pleasure of being a part of a community &#8211; Щастя бути частиною спільноти</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 04 May 2022 05:00:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Artemy Kaydash\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Thu, 19 May 2022 06:32:29 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Thu, 19 May 2022 06:15:13 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 2\";s:16:\"content-encoding\";s:2:\"br\";}}s:5:\"build\";s:14:\"20220128120558\";}','no'),(2641,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1652985150','no'),(2642,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1652941950','no'),(2643,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1652985150','no'),(2644,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2022/05/wordpress-6-0-release-candidate-3-rc3-now-available-for-testing/\'>WordPress 6.0 Release Candidate 3 (RC3) Now Available for Testing</a></li><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2022/05/episode-31-open-source-accessibility-celebrating-global-accessibility-awareness-day-with-guest-joe-devon/\'>WP Briefing: Episode 31: Open Source &amp; Accessibility– Celebrating Global Accessibility Awareness Day With Guest Joe Devon</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wptavern.com/woocommerce-calls-for-early-testing-on-custom-order-table-migrations\'>WPTavern: WooCommerce Calls for Early Testing on Custom Order Table Migrations</a></li><li><a class=\'rsswidget\' href=\'https://wordpressfoundation.org/news/2022/the-kim-parsell-memorial-scholarship-returns-for-wordcamp-us-2022/\'>WordPress Foundation: The Kim Parsell Memorial Scholarship Returns for WordCamp US 2022</a></li><li><a class=\'rsswidget\' href=\'https://poststatus.com/this-week-at-wordpress-org-may-16-2022/\'>Post Status: This Week at WordPress.org (May 16, 2022)</a></li></ul></div>','no'),(2653,'_site_transient_timeout_community-events-b2515839ba75cc5c8571128cf4b1b463','1652986040','no'),(2654,'_site_transient_community-events-b2515839ba75cc5c8571128cf4b1b463','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:13:\"175.100.149.0\";}s:6:\"events\";a:1:{i:0;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:46:\"WordPress Meetup - Topic & Venue to be decided\";s:3:\"url\";s:58:\"https://www.meetup.com/BengaluruWordPress/events/285385324\";s:6:\"meetup\";s:19:\"Bengaluru WordPress\";s:10:\"meetup_url\";s:42:\"https://www.meetup.com/BengaluruWordPress/\";s:4:\"date\";s:19:\"2022-05-21 15:00:00\";s:8:\"end_date\";s:19:\"2022-05-21 16:30:00\";s:20:\"start_unix_timestamp\";i:1653125400;s:18:\"end_unix_timestamp\";i:1653130800;s:8:\"location\";a:4:{s:8:\"location\";s:20:\"Bengaluru, KA, India\";s:7:\"country\";s:2:\"IN\";s:8:\"latitude\";d:12.9700000000000006394884621840901672840118408203125;s:9:\"longitude\";d:77.56000000000000227373675443232059478759765625;}}}}','no'),(2681,'_site_transient_timeout_kirki_googlefonts_cache','1653043824','no'),(2682,'_site_transient_kirki_googlefonts_cache','a:1064:{s:7:\"ABeeZee\";a:3:{s:5:\"label\";s:7:\"ABeeZee\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Abel\";a:3:{s:5:\"label\";s:4:\"Abel\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Abhaya Libre\";a:3:{s:5:\"label\";s:12:\"Abhaya Libre\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Abril Fatface\";a:3:{s:5:\"label\";s:13:\"Abril Fatface\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Aclonica\";a:3:{s:5:\"label\";s:8:\"Aclonica\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Acme\";a:3:{s:5:\"label\";s:4:\"Acme\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Actor\";a:3:{s:5:\"label\";s:5:\"Actor\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Adamina\";a:3:{s:5:\"label\";s:7:\"Adamina\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Advent Pro\";a:3:{s:5:\"label\";s:10:\"Advent Pro\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Aguafina Script\";a:3:{s:5:\"label\";s:15:\"Aguafina Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"Akaya Kanadaka\";a:3:{s:5:\"label\";s:14:\"Akaya Kanadaka\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Akaya Telivigala\";a:3:{s:5:\"label\";s:16:\"Akaya Telivigala\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Akronim\";a:3:{s:5:\"label\";s:7:\"Akronim\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Aladin\";a:3:{s:5:\"label\";s:6:\"Aladin\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Alata\";a:3:{s:5:\"label\";s:5:\"Alata\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Alatsi\";a:3:{s:5:\"label\";s:6:\"Alatsi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Aldrich\";a:3:{s:5:\"label\";s:7:\"Aldrich\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Alef\";a:3:{s:5:\"label\";s:4:\"Alef\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Alegreya\";a:3:{s:5:\"label\";s:8:\"Alegreya\";s:8:\"variants\";a:12:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:3:\"900\";i:9;s:9:\"900italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Alegreya SC\";a:3:{s:5:\"label\";s:11:\"Alegreya SC\";s:8:\"variants\";a:10:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:3:\"800\";i:5;s:9:\"800italic\";i:6;s:3:\"900\";i:7;s:9:\"900italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Alegreya Sans\";a:3:{s:5:\"label\";s:13:\"Alegreya Sans\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"800\";i:9;s:9:\"800italic\";i:10;s:3:\"900\";i:11;s:9:\"900italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Alegreya Sans SC\";a:3:{s:5:\"label\";s:16:\"Alegreya Sans SC\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"800\";i:9;s:9:\"800italic\";i:10;s:3:\"900\";i:11;s:9:\"900italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Aleo\";a:3:{s:5:\"label\";s:4:\"Aleo\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Alex Brush\";a:3:{s:5:\"label\";s:10:\"Alex Brush\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Alfa Slab One\";a:3:{s:5:\"label\";s:13:\"Alfa Slab One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Alice\";a:3:{s:5:\"label\";s:5:\"Alice\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Alike\";a:3:{s:5:\"label\";s:5:\"Alike\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Alike Angular\";a:3:{s:5:\"label\";s:13:\"Alike Angular\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Allan\";a:3:{s:5:\"label\";s:5:\"Allan\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Allerta\";a:3:{s:5:\"label\";s:7:\"Allerta\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Allerta Stencil\";a:3:{s:5:\"label\";s:15:\"Allerta Stencil\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Allura\";a:3:{s:5:\"label\";s:6:\"Allura\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Almarai\";a:3:{s:5:\"label\";s:7:\"Almarai\";s:8:\"variants\";a:4:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:3:\"800\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Almendra\";a:3:{s:5:\"label\";s:8:\"Almendra\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Almendra Display\";a:3:{s:5:\"label\";s:16:\"Almendra Display\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Almendra SC\";a:3:{s:5:\"label\";s:11:\"Almendra SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Amarante\";a:3:{s:5:\"label\";s:8:\"Amarante\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Amaranth\";a:3:{s:5:\"label\";s:8:\"Amaranth\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Amatic SC\";a:3:{s:5:\"label\";s:9:\"Amatic SC\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Amethysta\";a:3:{s:5:\"label\";s:9:\"Amethysta\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Amiko\";a:3:{s:5:\"label\";s:5:\"Amiko\";s:8:\"variants\";a:3:{i:0;s:3:\"600\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Amiri\";a:3:{s:5:\"label\";s:5:\"Amiri\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Amita\";a:3:{s:5:\"label\";s:5:\"Amita\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Anaheim\";a:3:{s:5:\"label\";s:7:\"Anaheim\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Andada\";a:3:{s:5:\"label\";s:6:\"Andada\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Andika\";a:3:{s:5:\"label\";s:6:\"Andika\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Andika New Basic\";a:3:{s:5:\"label\";s:16:\"Andika New Basic\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Angkor\";a:3:{s:5:\"label\";s:6:\"Angkor\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:24:\"Annie Use Your Telescope\";a:3:{s:5:\"label\";s:24:\"Annie Use Your Telescope\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Anonymous Pro\";a:3:{s:5:\"label\";s:13:\"Anonymous Pro\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:5:\"Antic\";a:3:{s:5:\"label\";s:5:\"Antic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Antic Didone\";a:3:{s:5:\"label\";s:12:\"Antic Didone\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Antic Slab\";a:3:{s:5:\"label\";s:10:\"Antic Slab\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Anton\";a:3:{s:5:\"label\";s:5:\"Anton\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Antonio\";a:3:{s:5:\"label\";s:7:\"Antonio\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Arapey\";a:3:{s:5:\"label\";s:6:\"Arapey\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Arbutus\";a:3:{s:5:\"label\";s:7:\"Arbutus\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Arbutus Slab\";a:3:{s:5:\"label\";s:12:\"Arbutus Slab\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:19:\"Architects Daughter\";a:3:{s:5:\"label\";s:19:\"Architects Daughter\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Archivo\";a:3:{s:5:\"label\";s:7:\"Archivo\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Archivo Black\";a:3:{s:5:\"label\";s:13:\"Archivo Black\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Archivo Narrow\";a:3:{s:5:\"label\";s:14:\"Archivo Narrow\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Aref Ruqaa\";a:3:{s:5:\"label\";s:10:\"Aref Ruqaa\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Arima Madurai\";a:3:{s:5:\"label\";s:13:\"Arima Madurai\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:3:\"900\";i:7;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Arimo\";a:3:{s:5:\"label\";s:5:\"Arimo\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Arizonia\";a:3:{s:5:\"label\";s:8:\"Arizonia\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Armata\";a:3:{s:5:\"label\";s:6:\"Armata\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Arsenal\";a:3:{s:5:\"label\";s:7:\"Arsenal\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Artifika\";a:3:{s:5:\"label\";s:8:\"Artifika\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Arvo\";a:3:{s:5:\"label\";s:4:\"Arvo\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Arya\";a:3:{s:5:\"label\";s:4:\"Arya\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Asap\";a:3:{s:5:\"label\";s:4:\"Asap\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Asap Condensed\";a:3:{s:5:\"label\";s:14:\"Asap Condensed\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Asar\";a:3:{s:5:\"label\";s:4:\"Asar\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Asset\";a:3:{s:5:\"label\";s:5:\"Asset\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Assistant\";a:3:{s:5:\"label\";s:9:\"Assistant\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Astloch\";a:3:{s:5:\"label\";s:7:\"Astloch\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Asul\";a:3:{s:5:\"label\";s:4:\"Asul\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Athiti\";a:3:{s:5:\"label\";s:6:\"Athiti\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Atma\";a:3:{s:5:\"label\";s:4:\"Atma\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Atomic Age\";a:3:{s:5:\"label\";s:10:\"Atomic Age\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Aubrey\";a:3:{s:5:\"label\";s:6:\"Aubrey\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Audiowide\";a:3:{s:5:\"label\";s:9:\"Audiowide\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Autour One\";a:3:{s:5:\"label\";s:10:\"Autour One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Average\";a:3:{s:5:\"label\";s:7:\"Average\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Average Sans\";a:3:{s:5:\"label\";s:12:\"Average Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Averia Gruesa Libre\";a:3:{s:5:\"label\";s:19:\"Averia Gruesa Libre\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Averia Libre\";a:3:{s:5:\"label\";s:12:\"Averia Libre\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:17:\"Averia Sans Libre\";a:3:{s:5:\"label\";s:17:\"Averia Sans Libre\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:18:\"Averia Serif Libre\";a:3:{s:5:\"label\";s:18:\"Averia Serif Libre\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"B612\";a:3:{s:5:\"label\";s:4:\"B612\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"B612 Mono\";a:3:{s:5:\"label\";s:9:\"B612 Mono\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:10:\"Bad Script\";a:3:{s:5:\"label\";s:10:\"Bad Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Bahiana\";a:3:{s:5:\"label\";s:7:\"Bahiana\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Bahianita\";a:3:{s:5:\"label\";s:9:\"Bahianita\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Bai Jamjuree\";a:3:{s:5:\"label\";s:12:\"Bai Jamjuree\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Ballet\";a:3:{s:5:\"label\";s:6:\"Ballet\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Baloo 2\";a:3:{s:5:\"label\";s:7:\"Baloo 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Baloo Bhai 2\";a:3:{s:5:\"label\";s:12:\"Baloo Bhai 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Baloo Bhaina 2\";a:3:{s:5:\"label\";s:14:\"Baloo Bhaina 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Baloo Chettan 2\";a:3:{s:5:\"label\";s:15:\"Baloo Chettan 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Baloo Da 2\";a:3:{s:5:\"label\";s:10:\"Baloo Da 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Baloo Paaji 2\";a:3:{s:5:\"label\";s:13:\"Baloo Paaji 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Baloo Tamma 2\";a:3:{s:5:\"label\";s:13:\"Baloo Tamma 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Baloo Tammudu 2\";a:3:{s:5:\"label\";s:15:\"Baloo Tammudu 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Baloo Thambi 2\";a:3:{s:5:\"label\";s:14:\"Baloo Thambi 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Balsamiq Sans\";a:3:{s:5:\"label\";s:13:\"Balsamiq Sans\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Balthazar\";a:3:{s:5:\"label\";s:9:\"Balthazar\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Bangers\";a:3:{s:5:\"label\";s:7:\"Bangers\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Barlow\";a:3:{s:5:\"label\";s:6:\"Barlow\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Barlow Condensed\";a:3:{s:5:\"label\";s:16:\"Barlow Condensed\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Barlow Semi Condensed\";a:3:{s:5:\"label\";s:21:\"Barlow Semi Condensed\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Barriecito\";a:3:{s:5:\"label\";s:10:\"Barriecito\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Barrio\";a:3:{s:5:\"label\";s:6:\"Barrio\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Basic\";a:3:{s:5:\"label\";s:5:\"Basic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Baskervville\";a:3:{s:5:\"label\";s:12:\"Baskervville\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Battambang\";a:3:{s:5:\"label\";s:10:\"Battambang\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Baumans\";a:3:{s:5:\"label\";s:7:\"Baumans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Bayon\";a:3:{s:5:\"label\";s:5:\"Bayon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Be Vietnam\";a:3:{s:5:\"label\";s:10:\"Be Vietnam\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Bebas Neue\";a:3:{s:5:\"label\";s:10:\"Bebas Neue\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Belgrano\";a:3:{s:5:\"label\";s:8:\"Belgrano\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Bellefair\";a:3:{s:5:\"label\";s:9:\"Bellefair\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Belleza\";a:3:{s:5:\"label\";s:7:\"Belleza\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Bellota\";a:3:{s:5:\"label\";s:7:\"Bellota\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Bellota Text\";a:3:{s:5:\"label\";s:12:\"Bellota Text\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"BenchNine\";a:3:{s:5:\"label\";s:9:\"BenchNine\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Benne\";a:3:{s:5:\"label\";s:5:\"Benne\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Bentham\";a:3:{s:5:\"label\";s:7:\"Bentham\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"Berkshire Swash\";a:3:{s:5:\"label\";s:15:\"Berkshire Swash\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Beth Ellen\";a:3:{s:5:\"label\";s:10:\"Beth Ellen\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Bevan\";a:3:{s:5:\"label\";s:5:\"Bevan\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:21:\"Big Shoulders Display\";a:3:{s:5:\"label\";s:21:\"Big Shoulders Display\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:3:\"900\";i:7;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:28:\"Big Shoulders Inline Display\";a:3:{s:5:\"label\";s:28:\"Big Shoulders Inline Display\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:3:\"900\";i:7;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:25:\"Big Shoulders Inline Text\";a:3:{s:5:\"label\";s:25:\"Big Shoulders Inline Text\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:3:\"900\";i:7;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:29:\"Big Shoulders Stencil Display\";a:3:{s:5:\"label\";s:29:\"Big Shoulders Stencil Display\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:3:\"900\";i:7;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:26:\"Big Shoulders Stencil Text\";a:3:{s:5:\"label\";s:26:\"Big Shoulders Stencil Text\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:3:\"900\";i:7;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:18:\"Big Shoulders Text\";a:3:{s:5:\"label\";s:18:\"Big Shoulders Text\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:3:\"900\";i:7;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Bigelow Rules\";a:3:{s:5:\"label\";s:13:\"Bigelow Rules\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Bigshot One\";a:3:{s:5:\"label\";s:11:\"Bigshot One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Bilbo\";a:3:{s:5:\"label\";s:5:\"Bilbo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:16:\"Bilbo Swash Caps\";a:3:{s:5:\"label\";s:16:\"Bilbo Swash Caps\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"BioRhyme\";a:3:{s:5:\"label\";s:8:\"BioRhyme\";s:8:\"variants\";a:5:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"BioRhyme Expanded\";a:3:{s:5:\"label\";s:17:\"BioRhyme Expanded\";s:8:\"variants\";a:5:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Biryani\";a:3:{s:5:\"label\";s:7:\"Biryani\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Bitter\";a:3:{s:5:\"label\";s:6:\"Bitter\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:23:\"Black And White Picture\";a:3:{s:5:\"label\";s:23:\"Black And White Picture\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Black Han Sans\";a:3:{s:5:\"label\";s:14:\"Black Han Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Black Ops One\";a:3:{s:5:\"label\";s:13:\"Black Ops One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Blinker\";a:3:{s:5:\"label\";s:7:\"Blinker\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:3:\"900\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Bodoni Moda\";a:3:{s:5:\"label\";s:11:\"Bodoni Moda\";s:8:\"variants\";a:12:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:3:\"900\";i:9;s:9:\"900italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Bokor\";a:3:{s:5:\"label\";s:5:\"Bokor\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Bona Nova\";a:3:{s:5:\"label\";s:9:\"Bona Nova\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Bonbon\";a:3:{s:5:\"label\";s:6:\"Bonbon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Boogaloo\";a:3:{s:5:\"label\";s:8:\"Boogaloo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Bowlby One\";a:3:{s:5:\"label\";s:10:\"Bowlby One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Bowlby One SC\";a:3:{s:5:\"label\";s:13:\"Bowlby One SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Brawler\";a:3:{s:5:\"label\";s:7:\"Brawler\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Bree Serif\";a:3:{s:5:\"label\";s:10:\"Bree Serif\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Brygada 1918\";a:3:{s:5:\"label\";s:12:\"Brygada 1918\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Bubblegum Sans\";a:3:{s:5:\"label\";s:14:\"Bubblegum Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Bubbler One\";a:3:{s:5:\"label\";s:11:\"Bubbler One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Buda\";a:3:{s:5:\"label\";s:4:\"Buda\";s:8:\"variants\";a:1:{i:0;s:3:\"300\";}s:8:\"category\";s:7:\"display\";}s:7:\"Buenard\";a:3:{s:5:\"label\";s:7:\"Buenard\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Bungee\";a:3:{s:5:\"label\";s:6:\"Bungee\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Bungee Hairline\";a:3:{s:5:\"label\";s:15:\"Bungee Hairline\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Bungee Inline\";a:3:{s:5:\"label\";s:13:\"Bungee Inline\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Bungee Outline\";a:3:{s:5:\"label\";s:14:\"Bungee Outline\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Bungee Shade\";a:3:{s:5:\"label\";s:12:\"Bungee Shade\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Butcherman\";a:3:{s:5:\"label\";s:10:\"Butcherman\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Butterfly Kids\";a:3:{s:5:\"label\";s:14:\"Butterfly Kids\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Cabin\";a:3:{s:5:\"label\";s:5:\"Cabin\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Cabin Condensed\";a:3:{s:5:\"label\";s:15:\"Cabin Condensed\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Cabin Sketch\";a:3:{s:5:\"label\";s:12:\"Cabin Sketch\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Caesar Dressing\";a:3:{s:5:\"label\";s:15:\"Caesar Dressing\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Cagliostro\";a:3:{s:5:\"label\";s:10:\"Cagliostro\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Cairo\";a:3:{s:5:\"label\";s:5:\"Cairo\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Caladea\";a:3:{s:5:\"label\";s:7:\"Caladea\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Calistoga\";a:3:{s:5:\"label\";s:9:\"Calistoga\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Calligraffitti\";a:3:{s:5:\"label\";s:14:\"Calligraffitti\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Cambay\";a:3:{s:5:\"label\";s:6:\"Cambay\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Cambo\";a:3:{s:5:\"label\";s:5:\"Cambo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Candal\";a:3:{s:5:\"label\";s:6:\"Candal\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Cantarell\";a:3:{s:5:\"label\";s:9:\"Cantarell\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Cantata One\";a:3:{s:5:\"label\";s:11:\"Cantata One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Cantora One\";a:3:{s:5:\"label\";s:11:\"Cantora One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Capriola\";a:3:{s:5:\"label\";s:8:\"Capriola\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Cardo\";a:3:{s:5:\"label\";s:5:\"Cardo\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Carme\";a:3:{s:5:\"label\";s:5:\"Carme\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Carrois Gothic\";a:3:{s:5:\"label\";s:14:\"Carrois Gothic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Carrois Gothic SC\";a:3:{s:5:\"label\";s:17:\"Carrois Gothic SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Carter One\";a:3:{s:5:\"label\";s:10:\"Carter One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Castoro\";a:3:{s:5:\"label\";s:7:\"Castoro\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Catamaran\";a:3:{s:5:\"label\";s:9:\"Catamaran\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Caudex\";a:3:{s:5:\"label\";s:6:\"Caudex\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Caveat\";a:3:{s:5:\"label\";s:6:\"Caveat\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Caveat Brush\";a:3:{s:5:\"label\";s:12:\"Caveat Brush\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:18:\"Cedarville Cursive\";a:3:{s:5:\"label\";s:18:\"Cedarville Cursive\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:11:\"Ceviche One\";a:3:{s:5:\"label\";s:11:\"Ceviche One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Chakra Petch\";a:3:{s:5:\"label\";s:12:\"Chakra Petch\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Changa\";a:3:{s:5:\"label\";s:6:\"Changa\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Changa One\";a:3:{s:5:\"label\";s:10:\"Changa One\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Chango\";a:3:{s:5:\"label\";s:6:\"Chango\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Charm\";a:3:{s:5:\"label\";s:5:\"Charm\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Charmonman\";a:3:{s:5:\"label\";s:10:\"Charmonman\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Chathura\";a:3:{s:5:\"label\";s:8:\"Chathura\";s:8:\"variants\";a:5:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Chau Philomene One\";a:3:{s:5:\"label\";s:18:\"Chau Philomene One\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Chela One\";a:3:{s:5:\"label\";s:9:\"Chela One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Chelsea Market\";a:3:{s:5:\"label\";s:14:\"Chelsea Market\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Chenla\";a:3:{s:5:\"label\";s:6:\"Chenla\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:17:\"Cherry Cream Soda\";a:3:{s:5:\"label\";s:17:\"Cherry Cream Soda\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Cherry Swash\";a:3:{s:5:\"label\";s:12:\"Cherry Swash\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Chewy\";a:3:{s:5:\"label\";s:5:\"Chewy\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Chicle\";a:3:{s:5:\"label\";s:6:\"Chicle\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Chilanka\";a:3:{s:5:\"label\";s:8:\"Chilanka\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Chivo\";a:3:{s:5:\"label\";s:5:\"Chivo\";s:8:\"variants\";a:8:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:3:\"900\";i:5;s:9:\"900italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Chonburi\";a:3:{s:5:\"label\";s:8:\"Chonburi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Cinzel\";a:3:{s:5:\"label\";s:6:\"Cinzel\";s:8:\"variants\";a:6:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Cinzel Decorative\";a:3:{s:5:\"label\";s:17:\"Cinzel Decorative\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:3:\"900\";i:2;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Clicker Script\";a:3:{s:5:\"label\";s:14:\"Clicker Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:4:\"Coda\";a:3:{s:5:\"label\";s:4:\"Coda\";s:8:\"variants\";a:2:{i:0;s:3:\"800\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Coda Caption\";a:3:{s:5:\"label\";s:12:\"Coda Caption\";s:8:\"variants\";a:1:{i:0;s:3:\"800\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Codystar\";a:3:{s:5:\"label\";s:8:\"Codystar\";s:8:\"variants\";a:2:{i:0;s:3:\"300\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Coiny\";a:3:{s:5:\"label\";s:5:\"Coiny\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Combo\";a:3:{s:5:\"label\";s:5:\"Combo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Comfortaa\";a:3:{s:5:\"label\";s:9:\"Comfortaa\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Comic Neue\";a:3:{s:5:\"label\";s:10:\"Comic Neue\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:11:\"Coming Soon\";a:3:{s:5:\"label\";s:11:\"Coming Soon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Commissioner\";a:3:{s:5:\"label\";s:12:\"Commissioner\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Concert One\";a:3:{s:5:\"label\";s:11:\"Concert One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Condiment\";a:3:{s:5:\"label\";s:9:\"Condiment\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Content\";a:3:{s:5:\"label\";s:7:\"Content\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Contrail One\";a:3:{s:5:\"label\";s:12:\"Contrail One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Convergence\";a:3:{s:5:\"label\";s:11:\"Convergence\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Cookie\";a:3:{s:5:\"label\";s:6:\"Cookie\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Copse\";a:3:{s:5:\"label\";s:5:\"Copse\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Corben\";a:3:{s:5:\"label\";s:6:\"Corben\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Cormorant\";a:3:{s:5:\"label\";s:9:\"Cormorant\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"Cormorant Garamond\";a:3:{s:5:\"label\";s:18:\"Cormorant Garamond\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Cormorant Infant\";a:3:{s:5:\"label\";s:16:\"Cormorant Infant\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Cormorant SC\";a:3:{s:5:\"label\";s:12:\"Cormorant SC\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Cormorant Unicase\";a:3:{s:5:\"label\";s:17:\"Cormorant Unicase\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Cormorant Upright\";a:3:{s:5:\"label\";s:17:\"Cormorant Upright\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Courgette\";a:3:{s:5:\"label\";s:9:\"Courgette\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Courier Prime\";a:3:{s:5:\"label\";s:13:\"Courier Prime\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:7:\"Cousine\";a:3:{s:5:\"label\";s:7:\"Cousine\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:8:\"Coustard\";a:3:{s:5:\"label\";s:8:\"Coustard\";s:8:\"variants\";a:2:{i:0;s:3:\"900\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:21:\"Covered By Your Grace\";a:3:{s:5:\"label\";s:21:\"Covered By Your Grace\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Crafty Girls\";a:3:{s:5:\"label\";s:12:\"Crafty Girls\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Creepster\";a:3:{s:5:\"label\";s:9:\"Creepster\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Crete Round\";a:3:{s:5:\"label\";s:11:\"Crete Round\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Crimson Pro\";a:3:{s:5:\"label\";s:11:\"Crimson Pro\";s:8:\"variants\";a:16:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:3:\"900\";i:13;s:9:\"900italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Crimson Text\";a:3:{s:5:\"label\";s:12:\"Crimson Text\";s:8:\"variants\";a:6:{i:0;s:3:\"600\";i:1;s:9:\"600italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Croissant One\";a:3:{s:5:\"label\";s:13:\"Croissant One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Crushed\";a:3:{s:5:\"label\";s:7:\"Crushed\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Cuprum\";a:3:{s:5:\"label\";s:6:\"Cuprum\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Cute Font\";a:3:{s:5:\"label\";s:9:\"Cute Font\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Cutive\";a:3:{s:5:\"label\";s:6:\"Cutive\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Cutive Mono\";a:3:{s:5:\"label\";s:11:\"Cutive Mono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:7:\"DM Mono\";a:3:{s:5:\"label\";s:7:\"DM Mono\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:7:\"DM Sans\";a:3:{s:5:\"label\";s:7:\"DM Sans\";s:8:\"variants\";a:6:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"DM Serif Display\";a:3:{s:5:\"label\";s:16:\"DM Serif Display\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"DM Serif Text\";a:3:{s:5:\"label\";s:13:\"DM Serif Text\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Damion\";a:3:{s:5:\"label\";s:6:\"Damion\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"Dancing Script\";a:3:{s:5:\"label\";s:14:\"Dancing Script\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Dangrek\";a:3:{s:5:\"label\";s:7:\"Dangrek\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Darker Grotesque\";a:3:{s:5:\"label\";s:16:\"Darker Grotesque\";s:8:\"variants\";a:7:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"David Libre\";a:3:{s:5:\"label\";s:11:\"David Libre\";s:8:\"variants\";a:3:{i:0;s:3:\"500\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:20:\"Dawning of a New Day\";a:3:{s:5:\"label\";s:20:\"Dawning of a New Day\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Days One\";a:3:{s:5:\"label\";s:8:\"Days One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Dekko\";a:3:{s:5:\"label\";s:5:\"Dekko\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:15:\"Dela Gothic One\";a:3:{s:5:\"label\";s:15:\"Dela Gothic One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Delius\";a:3:{s:5:\"label\";s:6:\"Delius\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:17:\"Delius Swash Caps\";a:3:{s:5:\"label\";s:17:\"Delius Swash Caps\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"Delius Unicase\";a:3:{s:5:\"label\";s:14:\"Delius Unicase\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Della Respira\";a:3:{s:5:\"label\";s:13:\"Della Respira\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Denk One\";a:3:{s:5:\"label\";s:8:\"Denk One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Devonshire\";a:3:{s:5:\"label\";s:10:\"Devonshire\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Dhurjati\";a:3:{s:5:\"label\";s:8:\"Dhurjati\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Didact Gothic\";a:3:{s:5:\"label\";s:13:\"Didact Gothic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Diplomata\";a:3:{s:5:\"label\";s:9:\"Diplomata\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Diplomata SC\";a:3:{s:5:\"label\";s:12:\"Diplomata SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Do Hyeon\";a:3:{s:5:\"label\";s:8:\"Do Hyeon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Dokdo\";a:3:{s:5:\"label\";s:5:\"Dokdo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Domine\";a:3:{s:5:\"label\";s:6:\"Domine\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Donegal One\";a:3:{s:5:\"label\";s:11:\"Donegal One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Doppio One\";a:3:{s:5:\"label\";s:10:\"Doppio One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Dorsa\";a:3:{s:5:\"label\";s:5:\"Dorsa\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Dosis\";a:3:{s:5:\"label\";s:5:\"Dosis\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"DotGothic16\";a:3:{s:5:\"label\";s:11:\"DotGothic16\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Dr Sugiyama\";a:3:{s:5:\"label\";s:11:\"Dr Sugiyama\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Duru Sans\";a:3:{s:5:\"label\";s:9:\"Duru Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Dynalight\";a:3:{s:5:\"label\";s:9:\"Dynalight\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"EB Garamond\";a:3:{s:5:\"label\";s:11:\"EB Garamond\";s:8:\"variants\";a:10:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Eagle Lake\";a:3:{s:5:\"label\";s:10:\"Eagle Lake\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"East Sea Dokdo\";a:3:{s:5:\"label\";s:14:\"East Sea Dokdo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Eater\";a:3:{s:5:\"label\";s:5:\"Eater\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Economica\";a:3:{s:5:\"label\";s:9:\"Economica\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Eczar\";a:3:{s:5:\"label\";s:5:\"Eczar\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"El Messiri\";a:3:{s:5:\"label\";s:10:\"El Messiri\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Electrolize\";a:3:{s:5:\"label\";s:11:\"Electrolize\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Elsie\";a:3:{s:5:\"label\";s:5:\"Elsie\";s:8:\"variants\";a:2:{i:0;s:3:\"900\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Elsie Swash Caps\";a:3:{s:5:\"label\";s:16:\"Elsie Swash Caps\";s:8:\"variants\";a:2:{i:0;s:3:\"900\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Emblema One\";a:3:{s:5:\"label\";s:11:\"Emblema One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Emilys Candy\";a:3:{s:5:\"label\";s:12:\"Emilys Candy\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Encode Sans\";a:3:{s:5:\"label\";s:11:\"Encode Sans\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Encode Sans Condensed\";a:3:{s:5:\"label\";s:21:\"Encode Sans Condensed\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Encode Sans Expanded\";a:3:{s:5:\"label\";s:20:\"Encode Sans Expanded\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Encode Sans SC\";a:3:{s:5:\"label\";s:14:\"Encode Sans SC\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:26:\"Encode Sans Semi Condensed\";a:3:{s:5:\"label\";s:26:\"Encode Sans Semi Condensed\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:25:\"Encode Sans Semi Expanded\";a:3:{s:5:\"label\";s:25:\"Encode Sans Semi Expanded\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Engagement\";a:3:{s:5:\"label\";s:10:\"Engagement\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Englebert\";a:3:{s:5:\"label\";s:9:\"Englebert\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Enriqueta\";a:3:{s:5:\"label\";s:9:\"Enriqueta\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Epilogue\";a:3:{s:5:\"label\";s:8:\"Epilogue\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Erica One\";a:3:{s:5:\"label\";s:9:\"Erica One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Esteban\";a:3:{s:5:\"label\";s:7:\"Esteban\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"Euphoria Script\";a:3:{s:5:\"label\";s:15:\"Euphoria Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Ewert\";a:3:{s:5:\"label\";s:5:\"Ewert\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:3:\"Exo\";a:3:{s:5:\"label\";s:3:\"Exo\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Exo 2\";a:3:{s:5:\"label\";s:5:\"Exo 2\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Expletus Sans\";a:3:{s:5:\"label\";s:13:\"Expletus Sans\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Fahkwang\";a:3:{s:5:\"label\";s:8:\"Fahkwang\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Fanwood Text\";a:3:{s:5:\"label\";s:12:\"Fanwood Text\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Farro\";a:3:{s:5:\"label\";s:5:\"Farro\";s:8:\"variants\";a:4:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Farsan\";a:3:{s:5:\"label\";s:6:\"Farsan\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Fascinate\";a:3:{s:5:\"label\";s:9:\"Fascinate\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Fascinate Inline\";a:3:{s:5:\"label\";s:16:\"Fascinate Inline\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Faster One\";a:3:{s:5:\"label\";s:10:\"Faster One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Fasthand\";a:3:{s:5:\"label\";s:8:\"Fasthand\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Fauna One\";a:3:{s:5:\"label\";s:9:\"Fauna One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Faustina\";a:3:{s:5:\"label\";s:8:\"Faustina\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Federant\";a:3:{s:5:\"label\";s:8:\"Federant\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Federo\";a:3:{s:5:\"label\";s:6:\"Federo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Felipa\";a:3:{s:5:\"label\";s:6:\"Felipa\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Fenix\";a:3:{s:5:\"label\";s:5:\"Fenix\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Festive\";a:3:{s:5:\"label\";s:7:\"Festive\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Finger Paint\";a:3:{s:5:\"label\";s:12:\"Finger Paint\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Fira Code\";a:3:{s:5:\"label\";s:9:\"Fira Code\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:9:\"Fira Mono\";a:3:{s:5:\"label\";s:9:\"Fira Mono\";s:8:\"variants\";a:3:{i:0;s:3:\"500\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:9:\"Fira Sans\";a:3:{s:5:\"label\";s:9:\"Fira Sans\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Fira Sans Condensed\";a:3:{s:5:\"label\";s:19:\"Fira Sans Condensed\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:25:\"Fira Sans Extra Condensed\";a:3:{s:5:\"label\";s:25:\"Fira Sans Extra Condensed\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Fjalla One\";a:3:{s:5:\"label\";s:10:\"Fjalla One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Fjord One\";a:3:{s:5:\"label\";s:9:\"Fjord One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Flamenco\";a:3:{s:5:\"label\";s:8:\"Flamenco\";s:8:\"variants\";a:2:{i:0;s:3:\"300\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Flavors\";a:3:{s:5:\"label\";s:7:\"Flavors\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Fondamento\";a:3:{s:5:\"label\";s:10:\"Fondamento\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:16:\"Fontdiner Swanky\";a:3:{s:5:\"label\";s:16:\"Fontdiner Swanky\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Forum\";a:3:{s:5:\"label\";s:5:\"Forum\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Francois One\";a:3:{s:5:\"label\";s:12:\"Francois One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Frank Ruhl Libre\";a:3:{s:5:\"label\";s:16:\"Frank Ruhl Libre\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"700\";i:3;s:3:\"900\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Fraunces\";a:3:{s:5:\"label\";s:8:\"Fraunces\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Freckle Face\";a:3:{s:5:\"label\";s:12:\"Freckle Face\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:20:\"Fredericka the Great\";a:3:{s:5:\"label\";s:20:\"Fredericka the Great\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Fredoka One\";a:3:{s:5:\"label\";s:11:\"Fredoka One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Freehand\";a:3:{s:5:\"label\";s:8:\"Freehand\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Fresca\";a:3:{s:5:\"label\";s:6:\"Fresca\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Frijole\";a:3:{s:5:\"label\";s:7:\"Frijole\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Fruktur\";a:3:{s:5:\"label\";s:7:\"Fruktur\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Fugaz One\";a:3:{s:5:\"label\";s:9:\"Fugaz One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Fuggles\";a:3:{s:5:\"label\";s:7:\"Fuggles\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"GFS Didot\";a:3:{s:5:\"label\";s:9:\"GFS Didot\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"GFS Neohellenic\";a:3:{s:5:\"label\";s:15:\"GFS Neohellenic\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Gabriela\";a:3:{s:5:\"label\";s:8:\"Gabriela\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Gaegu\";a:3:{s:5:\"label\";s:5:\"Gaegu\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Gafata\";a:3:{s:5:\"label\";s:6:\"Gafata\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Galada\";a:3:{s:5:\"label\";s:6:\"Galada\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Galdeano\";a:3:{s:5:\"label\";s:8:\"Galdeano\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Galindo\";a:3:{s:5:\"label\";s:7:\"Galindo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Gamja Flower\";a:3:{s:5:\"label\";s:12:\"Gamja Flower\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Gayathri\";a:3:{s:5:\"label\";s:8:\"Gayathri\";s:8:\"variants\";a:3:{i:0;s:3:\"100\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Gelasio\";a:3:{s:5:\"label\";s:7:\"Gelasio\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Gentium Basic\";a:3:{s:5:\"label\";s:13:\"Gentium Basic\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"Gentium Book Basic\";a:3:{s:5:\"label\";s:18:\"Gentium Book Basic\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:3:\"Geo\";a:3:{s:5:\"label\";s:3:\"Geo\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Geostar\";a:3:{s:5:\"label\";s:7:\"Geostar\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Geostar Fill\";a:3:{s:5:\"label\";s:12:\"Geostar Fill\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Germania One\";a:3:{s:5:\"label\";s:12:\"Germania One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Gidugu\";a:3:{s:5:\"label\";s:6:\"Gidugu\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Gilda Display\";a:3:{s:5:\"label\";s:13:\"Gilda Display\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Girassol\";a:3:{s:5:\"label\";s:8:\"Girassol\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Give You Glory\";a:3:{s:5:\"label\";s:14:\"Give You Glory\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Glass Antiqua\";a:3:{s:5:\"label\";s:13:\"Glass Antiqua\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Glegoo\";a:3:{s:5:\"label\";s:6:\"Glegoo\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Gloria Hallelujah\";a:3:{s:5:\"label\";s:17:\"Gloria Hallelujah\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Goblin One\";a:3:{s:5:\"label\";s:10:\"Goblin One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Gochi Hand\";a:3:{s:5:\"label\";s:10:\"Gochi Hand\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Goldman\";a:3:{s:5:\"label\";s:7:\"Goldman\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Gorditas\";a:3:{s:5:\"label\";s:8:\"Gorditas\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Gothic A1\";a:3:{s:5:\"label\";s:9:\"Gothic A1\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Gotu\";a:3:{s:5:\"label\";s:4:\"Gotu\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Goudy Bookletter 1911\";a:3:{s:5:\"label\";s:21:\"Goudy Bookletter 1911\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Graduate\";a:3:{s:5:\"label\";s:8:\"Graduate\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Grand Hotel\";a:3:{s:5:\"label\";s:11:\"Grand Hotel\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Grandstander\";a:3:{s:5:\"label\";s:12:\"Grandstander\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Gravitas One\";a:3:{s:5:\"label\";s:12:\"Gravitas One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Great Vibes\";a:3:{s:5:\"label\";s:11:\"Great Vibes\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Grenze\";a:3:{s:5:\"label\";s:6:\"Grenze\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Grenze Gotisch\";a:3:{s:5:\"label\";s:14:\"Grenze Gotisch\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Griffy\";a:3:{s:5:\"label\";s:6:\"Griffy\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Gruppo\";a:3:{s:5:\"label\";s:6:\"Gruppo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Gudea\";a:3:{s:5:\"label\";s:5:\"Gudea\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Gugi\";a:3:{s:5:\"label\";s:4:\"Gugi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Gupter\";a:3:{s:5:\"label\";s:6:\"Gupter\";s:8:\"variants\";a:3:{i:0;s:3:\"500\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Gurajada\";a:3:{s:5:\"label\";s:8:\"Gurajada\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Habibi\";a:3:{s:5:\"label\";s:6:\"Habibi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Hachi Maru Pop\";a:3:{s:5:\"label\";s:14:\"Hachi Maru Pop\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Halant\";a:3:{s:5:\"label\";s:6:\"Halant\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"Hammersmith One\";a:3:{s:5:\"label\";s:15:\"Hammersmith One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Hanalei\";a:3:{s:5:\"label\";s:7:\"Hanalei\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Hanalei Fill\";a:3:{s:5:\"label\";s:12:\"Hanalei Fill\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Handlee\";a:3:{s:5:\"label\";s:7:\"Handlee\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Hanuman\";a:3:{s:5:\"label\";s:7:\"Hanuman\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Happy Monkey\";a:3:{s:5:\"label\";s:12:\"Happy Monkey\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Harmattan\";a:3:{s:5:\"label\";s:9:\"Harmattan\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Headland One\";a:3:{s:5:\"label\";s:12:\"Headland One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Heebo\";a:3:{s:5:\"label\";s:5:\"Heebo\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Henny Penny\";a:3:{s:5:\"label\";s:11:\"Henny Penny\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Hepta Slab\";a:3:{s:5:\"label\";s:10:\"Hepta Slab\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:20:\"Herr Von Muellerhoff\";a:3:{s:5:\"label\";s:20:\"Herr Von Muellerhoff\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Hi Melody\";a:3:{s:5:\"label\";s:9:\"Hi Melody\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:4:\"Hind\";a:3:{s:5:\"label\";s:4:\"Hind\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Hind Guntur\";a:3:{s:5:\"label\";s:11:\"Hind Guntur\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Hind Madurai\";a:3:{s:5:\"label\";s:12:\"Hind Madurai\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Hind Siliguri\";a:3:{s:5:\"label\";s:13:\"Hind Siliguri\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Hind Vadodara\";a:3:{s:5:\"label\";s:13:\"Hind Vadodara\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Holtwood One SC\";a:3:{s:5:\"label\";s:15:\"Holtwood One SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Homemade Apple\";a:3:{s:5:\"label\";s:14:\"Homemade Apple\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Homenaje\";a:3:{s:5:\"label\";s:8:\"Homenaje\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"IBM Plex Mono\";a:3:{s:5:\"label\";s:13:\"IBM Plex Mono\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:13:\"IBM Plex Sans\";a:3:{s:5:\"label\";s:13:\"IBM Plex Sans\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:23:\"IBM Plex Sans Condensed\";a:3:{s:5:\"label\";s:23:\"IBM Plex Sans Condensed\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"IBM Plex Serif\";a:3:{s:5:\"label\";s:14:\"IBM Plex Serif\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"IM Fell DW Pica\";a:3:{s:5:\"label\";s:15:\"IM Fell DW Pica\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"IM Fell DW Pica SC\";a:3:{s:5:\"label\";s:18:\"IM Fell DW Pica SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:19:\"IM Fell Double Pica\";a:3:{s:5:\"label\";s:19:\"IM Fell Double Pica\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:22:\"IM Fell Double Pica SC\";a:3:{s:5:\"label\";s:22:\"IM Fell Double Pica SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"IM Fell English\";a:3:{s:5:\"label\";s:15:\"IM Fell English\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"IM Fell English SC\";a:3:{s:5:\"label\";s:18:\"IM Fell English SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:20:\"IM Fell French Canon\";a:3:{s:5:\"label\";s:20:\"IM Fell French Canon\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:23:\"IM Fell French Canon SC\";a:3:{s:5:\"label\";s:23:\"IM Fell French Canon SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:20:\"IM Fell Great Primer\";a:3:{s:5:\"label\";s:20:\"IM Fell Great Primer\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:23:\"IM Fell Great Primer SC\";a:3:{s:5:\"label\";s:23:\"IM Fell Great Primer SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Ibarra Real Nova\";a:3:{s:5:\"label\";s:16:\"Ibarra Real Nova\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Iceberg\";a:3:{s:5:\"label\";s:7:\"Iceberg\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Iceland\";a:3:{s:5:\"label\";s:7:\"Iceland\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Imbue\";a:3:{s:5:\"label\";s:5:\"Imbue\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Imprima\";a:3:{s:5:\"label\";s:7:\"Imprima\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Inconsolata\";a:3:{s:5:\"label\";s:11:\"Inconsolata\";s:8:\"variants\";a:8:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:3:\"900\";i:7;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:5:\"Inder\";a:3:{s:5:\"label\";s:5:\"Inder\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Indie Flower\";a:3:{s:5:\"label\";s:12:\"Indie Flower\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Inika\";a:3:{s:5:\"label\";s:5:\"Inika\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Inknut Antiqua\";a:3:{s:5:\"label\";s:14:\"Inknut Antiqua\";s:8:\"variants\";a:7:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Inria Sans\";a:3:{s:5:\"label\";s:10:\"Inria Sans\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Inria Serif\";a:3:{s:5:\"label\";s:11:\"Inria Serif\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Inter\";a:3:{s:5:\"label\";s:5:\"Inter\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Irish Grover\";a:3:{s:5:\"label\";s:12:\"Irish Grover\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Istok Web\";a:3:{s:5:\"label\";s:9:\"Istok Web\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Italiana\";a:3:{s:5:\"label\";s:8:\"Italiana\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Italianno\";a:3:{s:5:\"label\";s:9:\"Italianno\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:4:\"Itim\";a:3:{s:5:\"label\";s:4:\"Itim\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:16:\"Jacques Francois\";a:3:{s:5:\"label\";s:16:\"Jacques Francois\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:23:\"Jacques Francois Shadow\";a:3:{s:5:\"label\";s:23:\"Jacques Francois Shadow\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Jaldi\";a:3:{s:5:\"label\";s:5:\"Jaldi\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"JetBrains Mono\";a:3:{s:5:\"label\";s:14:\"JetBrains Mono\";s:8:\"variants\";a:16:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:14:\"Jim Nightshade\";a:3:{s:5:\"label\";s:14:\"Jim Nightshade\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Jockey One\";a:3:{s:5:\"label\";s:10:\"Jockey One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Jolly Lodger\";a:3:{s:5:\"label\";s:12:\"Jolly Lodger\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Jomhuria\";a:3:{s:5:\"label\";s:8:\"Jomhuria\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Jomolhari\";a:3:{s:5:\"label\";s:9:\"Jomolhari\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Josefin Sans\";a:3:{s:5:\"label\";s:12:\"Josefin Sans\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Josefin Slab\";a:3:{s:5:\"label\";s:12:\"Josefin Slab\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Jost\";a:3:{s:5:\"label\";s:4:\"Jost\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Joti One\";a:3:{s:5:\"label\";s:8:\"Joti One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:3:\"Jua\";a:3:{s:5:\"label\";s:3:\"Jua\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Judson\";a:3:{s:5:\"label\";s:6:\"Judson\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Julee\";a:3:{s:5:\"label\";s:5:\"Julee\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:15:\"Julius Sans One\";a:3:{s:5:\"label\";s:15:\"Julius Sans One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Junge\";a:3:{s:5:\"label\";s:5:\"Junge\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Jura\";a:3:{s:5:\"label\";s:4:\"Jura\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Just Another Hand\";a:3:{s:5:\"label\";s:17:\"Just Another Hand\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:23:\"Just Me Again Down Here\";a:3:{s:5:\"label\";s:23:\"Just Me Again Down Here\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:3:\"K2D\";a:3:{s:5:\"label\";s:3:\"K2D\";s:8:\"variants\";a:16:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Kadwa\";a:3:{s:5:\"label\";s:5:\"Kadwa\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Kalam\";a:3:{s:5:\"label\";s:5:\"Kalam\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Kameron\";a:3:{s:5:\"label\";s:7:\"Kameron\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Kanit\";a:3:{s:5:\"label\";s:5:\"Kanit\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Kantumruy\";a:3:{s:5:\"label\";s:9:\"Kantumruy\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Karantina\";a:3:{s:5:\"label\";s:9:\"Karantina\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Karla\";a:3:{s:5:\"label\";s:5:\"Karla\";s:8:\"variants\";a:14:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Karma\";a:3:{s:5:\"label\";s:5:\"Karma\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Katibeh\";a:3:{s:5:\"label\";s:7:\"Katibeh\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Kaushan Script\";a:3:{s:5:\"label\";s:14:\"Kaushan Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Kavivanar\";a:3:{s:5:\"label\";s:9:\"Kavivanar\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Kavoon\";a:3:{s:5:\"label\";s:6:\"Kavoon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Kdam Thmor\";a:3:{s:5:\"label\";s:10:\"Kdam Thmor\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Keania One\";a:3:{s:5:\"label\";s:10:\"Keania One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Kelly Slab\";a:3:{s:5:\"label\";s:10:\"Kelly Slab\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Kenia\";a:3:{s:5:\"label\";s:5:\"Kenia\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Khand\";a:3:{s:5:\"label\";s:5:\"Khand\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Khmer\";a:3:{s:5:\"label\";s:5:\"Khmer\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Khula\";a:3:{s:5:\"label\";s:5:\"Khula\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Kirang Haerang\";a:3:{s:5:\"label\";s:14:\"Kirang Haerang\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Kite One\";a:3:{s:5:\"label\";s:8:\"Kite One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Kiwi Maru\";a:3:{s:5:\"label\";s:9:\"Kiwi Maru\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Knewave\";a:3:{s:5:\"label\";s:7:\"Knewave\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"KoHo\";a:3:{s:5:\"label\";s:4:\"KoHo\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Kodchasan\";a:3:{s:5:\"label\";s:9:\"Kodchasan\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Kosugi\";a:3:{s:5:\"label\";s:6:\"Kosugi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Kosugi Maru\";a:3:{s:5:\"label\";s:11:\"Kosugi Maru\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Kotta One\";a:3:{s:5:\"label\";s:9:\"Kotta One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Koulen\";a:3:{s:5:\"label\";s:6:\"Koulen\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Kranky\";a:3:{s:5:\"label\";s:6:\"Kranky\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Kreon\";a:3:{s:5:\"label\";s:5:\"Kreon\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Kristi\";a:3:{s:5:\"label\";s:6:\"Kristi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Krona One\";a:3:{s:5:\"label\";s:9:\"Krona One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Krub\";a:3:{s:5:\"label\";s:4:\"Krub\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Kufam\";a:3:{s:5:\"label\";s:5:\"Kufam\";s:8:\"variants\";a:12:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:3:\"900\";i:9;s:9:\"900italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Kulim Park\";a:3:{s:5:\"label\";s:10:\"Kulim Park\";s:8:\"variants\";a:10:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Kumar One\";a:3:{s:5:\"label\";s:9:\"Kumar One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:17:\"Kumar One Outline\";a:3:{s:5:\"label\";s:17:\"Kumar One Outline\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Kumbh Sans\";a:3:{s:5:\"label\";s:10:\"Kumbh Sans\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Kurale\";a:3:{s:5:\"label\";s:6:\"Kurale\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"La Belle Aurore\";a:3:{s:5:\"label\";s:15:\"La Belle Aurore\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Lacquer\";a:3:{s:5:\"label\";s:7:\"Lacquer\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Laila\";a:3:{s:5:\"label\";s:5:\"Laila\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Lakki Reddy\";a:3:{s:5:\"label\";s:11:\"Lakki Reddy\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Lalezar\";a:3:{s:5:\"label\";s:7:\"Lalezar\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Lancelot\";a:3:{s:5:\"label\";s:8:\"Lancelot\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Langar\";a:3:{s:5:\"label\";s:6:\"Langar\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Lateef\";a:3:{s:5:\"label\";s:6:\"Lateef\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:4:\"Lato\";a:3:{s:5:\"label\";s:4:\"Lato\";s:8:\"variants\";a:10:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"900\";i:7;s:9:\"900italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"League Script\";a:3:{s:5:\"label\";s:13:\"League Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Leckerli One\";a:3:{s:5:\"label\";s:12:\"Leckerli One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Ledger\";a:3:{s:5:\"label\";s:6:\"Ledger\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Lekton\";a:3:{s:5:\"label\";s:6:\"Lekton\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Lemon\";a:3:{s:5:\"label\";s:5:\"Lemon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Lemonada\";a:3:{s:5:\"label\";s:8:\"Lemonada\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Lexend\";a:3:{s:5:\"label\";s:6:\"Lexend\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Lexend Deca\";a:3:{s:5:\"label\";s:11:\"Lexend Deca\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Lexend Exa\";a:3:{s:5:\"label\";s:10:\"Lexend Exa\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Lexend Giga\";a:3:{s:5:\"label\";s:11:\"Lexend Giga\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Lexend Mega\";a:3:{s:5:\"label\";s:11:\"Lexend Mega\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Lexend Peta\";a:3:{s:5:\"label\";s:11:\"Lexend Peta\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Lexend Tera\";a:3:{s:5:\"label\";s:11:\"Lexend Tera\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Lexend Zetta\";a:3:{s:5:\"label\";s:12:\"Lexend Zetta\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Libre Barcode 128\";a:3:{s:5:\"label\";s:17:\"Libre Barcode 128\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:22:\"Libre Barcode 128 Text\";a:3:{s:5:\"label\";s:22:\"Libre Barcode 128 Text\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Libre Barcode 39\";a:3:{s:5:\"label\";s:16:\"Libre Barcode 39\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:25:\"Libre Barcode 39 Extended\";a:3:{s:5:\"label\";s:25:\"Libre Barcode 39 Extended\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:30:\"Libre Barcode 39 Extended Text\";a:3:{s:5:\"label\";s:30:\"Libre Barcode 39 Extended Text\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:21:\"Libre Barcode 39 Text\";a:3:{s:5:\"label\";s:21:\"Libre Barcode 39 Text\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:24:\"Libre Barcode EAN13 Text\";a:3:{s:5:\"label\";s:24:\"Libre Barcode EAN13 Text\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:17:\"Libre Baskerville\";a:3:{s:5:\"label\";s:17:\"Libre Baskerville\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:20:\"Libre Caslon Display\";a:3:{s:5:\"label\";s:20:\"Libre Caslon Display\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Libre Caslon Text\";a:3:{s:5:\"label\";s:17:\"Libre Caslon Text\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Libre Franklin\";a:3:{s:5:\"label\";s:14:\"Libre Franklin\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Life Savers\";a:3:{s:5:\"label\";s:11:\"Life Savers\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:3:\"800\";i:2;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Lilita One\";a:3:{s:5:\"label\";s:10:\"Lilita One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Lily Script One\";a:3:{s:5:\"label\";s:15:\"Lily Script One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Limelight\";a:3:{s:5:\"label\";s:9:\"Limelight\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Linden Hill\";a:3:{s:5:\"label\";s:11:\"Linden Hill\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Literata\";a:3:{s:5:\"label\";s:8:\"Literata\";s:8:\"variants\";a:16:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:3:\"900\";i:13;s:9:\"900italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Liu Jian Mao Cao\";a:3:{s:5:\"label\";s:16:\"Liu Jian Mao Cao\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Livvic\";a:3:{s:5:\"label\";s:6:\"Livvic\";s:8:\"variants\";a:16:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"900\";i:13;s:9:\"900italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Lobster\";a:3:{s:5:\"label\";s:7:\"Lobster\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Lobster Two\";a:3:{s:5:\"label\";s:11:\"Lobster Two\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Londrina Outline\";a:3:{s:5:\"label\";s:16:\"Londrina Outline\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Londrina Shadow\";a:3:{s:5:\"label\";s:15:\"Londrina Shadow\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Londrina Sketch\";a:3:{s:5:\"label\";s:15:\"Londrina Sketch\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Londrina Solid\";a:3:{s:5:\"label\";s:14:\"Londrina Solid\";s:8:\"variants\";a:4:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"900\";i:3;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Long Cang\";a:3:{s:5:\"label\";s:9:\"Long Cang\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:4:\"Lora\";a:3:{s:5:\"label\";s:4:\"Lora\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:21:\"Love Ya Like A Sister\";a:3:{s:5:\"label\";s:21:\"Love Ya Like A Sister\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:17:\"Loved by the King\";a:3:{s:5:\"label\";s:17:\"Loved by the King\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"Lovers Quarrel\";a:3:{s:5:\"label\";s:14:\"Lovers Quarrel\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Luckiest Guy\";a:3:{s:5:\"label\";s:12:\"Luckiest Guy\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Lusitana\";a:3:{s:5:\"label\";s:8:\"Lusitana\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Lustria\";a:3:{s:5:\"label\";s:7:\"Lustria\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"M PLUS 1p\";a:3:{s:5:\"label\";s:9:\"M PLUS 1p\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"M PLUS Rounded 1c\";a:3:{s:5:\"label\";s:17:\"M PLUS Rounded 1c\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Ma Shan Zheng\";a:3:{s:5:\"label\";s:13:\"Ma Shan Zheng\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Macondo\";a:3:{s:5:\"label\";s:7:\"Macondo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:18:\"Macondo Swash Caps\";a:3:{s:5:\"label\";s:18:\"Macondo Swash Caps\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Mada\";a:3:{s:5:\"label\";s:4:\"Mada\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Magra\";a:3:{s:5:\"label\";s:5:\"Magra\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Maiden Orange\";a:3:{s:5:\"label\";s:13:\"Maiden Orange\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Maitree\";a:3:{s:5:\"label\";s:7:\"Maitree\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"Major Mono Display\";a:3:{s:5:\"label\";s:18:\"Major Mono Display\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:4:\"Mako\";a:3:{s:5:\"label\";s:4:\"Mako\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Mali\";a:3:{s:5:\"label\";s:4:\"Mali\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Mallanna\";a:3:{s:5:\"label\";s:8:\"Mallanna\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Mandali\";a:3:{s:5:\"label\";s:7:\"Mandali\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Manjari\";a:3:{s:5:\"label\";s:7:\"Manjari\";s:8:\"variants\";a:3:{i:0;s:3:\"100\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Manrope\";a:3:{s:5:\"label\";s:7:\"Manrope\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Mansalva\";a:3:{s:5:\"label\";s:8:\"Mansalva\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Manuale\";a:3:{s:5:\"label\";s:7:\"Manuale\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Marcellus\";a:3:{s:5:\"label\";s:9:\"Marcellus\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Marcellus SC\";a:3:{s:5:\"label\";s:12:\"Marcellus SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Marck Script\";a:3:{s:5:\"label\";s:12:\"Marck Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Margarine\";a:3:{s:5:\"label\";s:9:\"Margarine\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Markazi Text\";a:3:{s:5:\"label\";s:12:\"Markazi Text\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Marko One\";a:3:{s:5:\"label\";s:9:\"Marko One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Marmelad\";a:3:{s:5:\"label\";s:8:\"Marmelad\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Martel\";a:3:{s:5:\"label\";s:6:\"Martel\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Martel Sans\";a:3:{s:5:\"label\";s:11:\"Martel Sans\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Marvel\";a:3:{s:5:\"label\";s:6:\"Marvel\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Mate\";a:3:{s:5:\"label\";s:4:\"Mate\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Mate SC\";a:3:{s:5:\"label\";s:7:\"Mate SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Maven Pro\";a:3:{s:5:\"label\";s:9:\"Maven Pro\";s:8:\"variants\";a:6:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"McLaren\";a:3:{s:5:\"label\";s:7:\"McLaren\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Meddon\";a:3:{s:5:\"label\";s:6:\"Meddon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"MedievalSharp\";a:3:{s:5:\"label\";s:13:\"MedievalSharp\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Medula One\";a:3:{s:5:\"label\";s:10:\"Medula One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Meera Inimai\";a:3:{s:5:\"label\";s:12:\"Meera Inimai\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Megrim\";a:3:{s:5:\"label\";s:6:\"Megrim\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Meie Script\";a:3:{s:5:\"label\";s:11:\"Meie Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Merienda\";a:3:{s:5:\"label\";s:8:\"Merienda\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Merienda One\";a:3:{s:5:\"label\";s:12:\"Merienda One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Merriweather\";a:3:{s:5:\"label\";s:12:\"Merriweather\";s:8:\"variants\";a:8:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:3:\"900\";i:5;s:9:\"900italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Merriweather Sans\";a:3:{s:5:\"label\";s:17:\"Merriweather Sans\";s:8:\"variants\";a:12:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"800\";i:9;s:9:\"800italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Metal\";a:3:{s:5:\"label\";s:5:\"Metal\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Metal Mania\";a:3:{s:5:\"label\";s:11:\"Metal Mania\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Metamorphous\";a:3:{s:5:\"label\";s:12:\"Metamorphous\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Metrophobic\";a:3:{s:5:\"label\";s:11:\"Metrophobic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Michroma\";a:3:{s:5:\"label\";s:8:\"Michroma\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Milonga\";a:3:{s:5:\"label\";s:7:\"Milonga\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Miltonian\";a:3:{s:5:\"label\";s:9:\"Miltonian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Miltonian Tattoo\";a:3:{s:5:\"label\";s:16:\"Miltonian Tattoo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Mina\";a:3:{s:5:\"label\";s:4:\"Mina\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Miniver\";a:3:{s:5:\"label\";s:7:\"Miniver\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Miriam Libre\";a:3:{s:5:\"label\";s:12:\"Miriam Libre\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Mirza\";a:3:{s:5:\"label\";s:5:\"Mirza\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Miss Fajardose\";a:3:{s:5:\"label\";s:14:\"Miss Fajardose\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:4:\"Mitr\";a:3:{s:5:\"label\";s:4:\"Mitr\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Modak\";a:3:{s:5:\"label\";s:5:\"Modak\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Modern Antiqua\";a:3:{s:5:\"label\";s:14:\"Modern Antiqua\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Mogra\";a:3:{s:5:\"label\";s:5:\"Mogra\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Molengo\";a:3:{s:5:\"label\";s:7:\"Molengo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Molle\";a:3:{s:5:\"label\";s:5:\"Molle\";s:8:\"variants\";a:1:{i:0;s:6:\"italic\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Monda\";a:3:{s:5:\"label\";s:5:\"Monda\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Monofett\";a:3:{s:5:\"label\";s:8:\"Monofett\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Monoton\";a:3:{s:5:\"label\";s:7:\"Monoton\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:20:\"Monsieur La Doulaise\";a:3:{s:5:\"label\";s:20:\"Monsieur La Doulaise\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Montaga\";a:3:{s:5:\"label\";s:7:\"Montaga\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Montez\";a:3:{s:5:\"label\";s:6:\"Montez\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Montserrat\";a:3:{s:5:\"label\";s:10:\"Montserrat\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Montserrat Alternates\";a:3:{s:5:\"label\";s:21:\"Montserrat Alternates\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Montserrat Subrayada\";a:3:{s:5:\"label\";s:20:\"Montserrat Subrayada\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Moul\";a:3:{s:5:\"label\";s:4:\"Moul\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Moulpali\";a:3:{s:5:\"label\";s:8:\"Moulpali\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:22:\"Mountains of Christmas\";a:3:{s:5:\"label\";s:22:\"Mountains of Christmas\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Mouse Memoirs\";a:3:{s:5:\"label\";s:13:\"Mouse Memoirs\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Mr Bedfort\";a:3:{s:5:\"label\";s:10:\"Mr Bedfort\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Mr Dafoe\";a:3:{s:5:\"label\";s:8:\"Mr Dafoe\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"Mr De Haviland\";a:3:{s:5:\"label\";s:14:\"Mr De Haviland\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:19:\"Mrs Saint Delafield\";a:3:{s:5:\"label\";s:19:\"Mrs Saint Delafield\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Mrs Sheppards\";a:3:{s:5:\"label\";s:13:\"Mrs Sheppards\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Mukta\";a:3:{s:5:\"label\";s:5:\"Mukta\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Mukta Mahee\";a:3:{s:5:\"label\";s:11:\"Mukta Mahee\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Mukta Malar\";a:3:{s:5:\"label\";s:11:\"Mukta Malar\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Mukta Vaani\";a:3:{s:5:\"label\";s:11:\"Mukta Vaani\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Mulish\";a:3:{s:5:\"label\";s:6:\"Mulish\";s:8:\"variants\";a:16:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:3:\"900\";i:13;s:9:\"900italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"MuseoModerno\";a:3:{s:5:\"label\";s:12:\"MuseoModerno\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Mystery Quest\";a:3:{s:5:\"label\";s:13:\"Mystery Quest\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:3:\"NTR\";a:3:{s:5:\"label\";s:3:\"NTR\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Nanum Brush Script\";a:3:{s:5:\"label\";s:18:\"Nanum Brush Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Nanum Gothic\";a:3:{s:5:\"label\";s:12:\"Nanum Gothic\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:3:\"800\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Nanum Gothic Coding\";a:3:{s:5:\"label\";s:19:\"Nanum Gothic Coding\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:14:\"Nanum Myeongjo\";a:3:{s:5:\"label\";s:14:\"Nanum Myeongjo\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:3:\"800\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Nanum Pen Script\";a:3:{s:5:\"label\";s:16:\"Nanum Pen Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Nerko One\";a:3:{s:5:\"label\";s:9:\"Nerko One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Neucha\";a:3:{s:5:\"label\";s:6:\"Neucha\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Neuton\";a:3:{s:5:\"label\";s:6:\"Neuton\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"New Rocker\";a:3:{s:5:\"label\";s:10:\"New Rocker\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"New Tegomin\";a:3:{s:5:\"label\";s:11:\"New Tegomin\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"News Cycle\";a:3:{s:5:\"label\";s:10:\"News Cycle\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Newsreader\";a:3:{s:5:\"label\";s:10:\"Newsreader\";s:8:\"variants\";a:14:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Niconne\";a:3:{s:5:\"label\";s:7:\"Niconne\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Niramit\";a:3:{s:5:\"label\";s:7:\"Niramit\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Nixie One\";a:3:{s:5:\"label\";s:9:\"Nixie One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Nobile\";a:3:{s:5:\"label\";s:6:\"Nobile\";s:8:\"variants\";a:6:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Nokora\";a:3:{s:5:\"label\";s:6:\"Nokora\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Norican\";a:3:{s:5:\"label\";s:7:\"Norican\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Nosifer\";a:3:{s:5:\"label\";s:7:\"Nosifer\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Notable\";a:3:{s:5:\"label\";s:7:\"Notable\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Nothing You Could Do\";a:3:{s:5:\"label\";s:20:\"Nothing You Could Do\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Noticia Text\";a:3:{s:5:\"label\";s:12:\"Noticia Text\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Noto Sans\";a:3:{s:5:\"label\";s:9:\"Noto Sans\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Noto Sans HK\";a:3:{s:5:\"label\";s:12:\"Noto Sans HK\";s:8:\"variants\";a:6:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Noto Sans JP\";a:3:{s:5:\"label\";s:12:\"Noto Sans JP\";s:8:\"variants\";a:6:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Noto Sans KR\";a:3:{s:5:\"label\";s:12:\"Noto Sans KR\";s:8:\"variants\";a:6:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Noto Sans SC\";a:3:{s:5:\"label\";s:12:\"Noto Sans SC\";s:8:\"variants\";a:6:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Noto Sans TC\";a:3:{s:5:\"label\";s:12:\"Noto Sans TC\";s:8:\"variants\";a:6:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Noto Serif\";a:3:{s:5:\"label\";s:10:\"Noto Serif\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Noto Serif JP\";a:3:{s:5:\"label\";s:13:\"Noto Serif JP\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Noto Serif KR\";a:3:{s:5:\"label\";s:13:\"Noto Serif KR\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Noto Serif SC\";a:3:{s:5:\"label\";s:13:\"Noto Serif SC\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Noto Serif TC\";a:3:{s:5:\"label\";s:13:\"Noto Serif TC\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Nova Cut\";a:3:{s:5:\"label\";s:8:\"Nova Cut\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Nova Flat\";a:3:{s:5:\"label\";s:9:\"Nova Flat\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Nova Mono\";a:3:{s:5:\"label\";s:9:\"Nova Mono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:9:\"Nova Oval\";a:3:{s:5:\"label\";s:9:\"Nova Oval\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Nova Round\";a:3:{s:5:\"label\";s:10:\"Nova Round\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Nova Script\";a:3:{s:5:\"label\";s:11:\"Nova Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Nova Slim\";a:3:{s:5:\"label\";s:9:\"Nova Slim\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Nova Square\";a:3:{s:5:\"label\";s:11:\"Nova Square\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Numans\";a:3:{s:5:\"label\";s:6:\"Numans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Nunito\";a:3:{s:5:\"label\";s:6:\"Nunito\";s:8:\"variants\";a:14:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"800\";i:9;s:9:\"800italic\";i:10;s:3:\"900\";i:11;s:9:\"900italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Nunito Sans\";a:3:{s:5:\"label\";s:11:\"Nunito Sans\";s:8:\"variants\";a:14:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"800\";i:9;s:9:\"800italic\";i:10;s:3:\"900\";i:11;s:9:\"900italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Odibee Sans\";a:3:{s:5:\"label\";s:11:\"Odibee Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Odor Mean Chey\";a:3:{s:5:\"label\";s:14:\"Odor Mean Chey\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Offside\";a:3:{s:5:\"label\";s:7:\"Offside\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:2:\"Oi\";a:3:{s:5:\"label\";s:2:\"Oi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Old Standard TT\";a:3:{s:5:\"label\";s:15:\"Old Standard TT\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Oldenburg\";a:3:{s:5:\"label\";s:9:\"Oldenburg\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Oleo Script\";a:3:{s:5:\"label\";s:11:\"Oleo Script\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:22:\"Oleo Script Swash Caps\";a:3:{s:5:\"label\";s:22:\"Oleo Script Swash Caps\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Open Sans\";a:3:{s:5:\"label\";s:9:\"Open Sans\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Open Sans Condensed\";a:3:{s:5:\"label\";s:19:\"Open Sans Condensed\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Oranienbaum\";a:3:{s:5:\"label\";s:11:\"Oranienbaum\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Orbitron\";a:3:{s:5:\"label\";s:8:\"Orbitron\";s:8:\"variants\";a:6:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Oregano\";a:3:{s:5:\"label\";s:7:\"Oregano\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Orelega One\";a:3:{s:5:\"label\";s:11:\"Orelega One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Orienta\";a:3:{s:5:\"label\";s:7:\"Orienta\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Original Surfer\";a:3:{s:5:\"label\";s:15:\"Original Surfer\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Oswald\";a:3:{s:5:\"label\";s:6:\"Oswald\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Otomanopee One\";a:3:{s:5:\"label\";s:14:\"Otomanopee One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Over the Rainbow\";a:3:{s:5:\"label\";s:16:\"Over the Rainbow\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Overlock\";a:3:{s:5:\"label\";s:8:\"Overlock\";s:8:\"variants\";a:6:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:3:\"900\";i:3;s:9:\"900italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Overlock SC\";a:3:{s:5:\"label\";s:11:\"Overlock SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Overpass\";a:3:{s:5:\"label\";s:8:\"Overpass\";s:8:\"variants\";a:16:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:3:\"900\";i:13;s:9:\"900italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Overpass Mono\";a:3:{s:5:\"label\";s:13:\"Overpass Mono\";s:8:\"variants\";a:4:{i:0;s:3:\"300\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:3:\"Ovo\";a:3:{s:5:\"label\";s:3:\"Ovo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Oxanium\";a:3:{s:5:\"label\";s:7:\"Oxanium\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Oxygen\";a:3:{s:5:\"label\";s:6:\"Oxygen\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Oxygen Mono\";a:3:{s:5:\"label\";s:11:\"Oxygen Mono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:7:\"PT Mono\";a:3:{s:5:\"label\";s:7:\"PT Mono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:7:\"PT Sans\";a:3:{s:5:\"label\";s:7:\"PT Sans\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"PT Sans Caption\";a:3:{s:5:\"label\";s:15:\"PT Sans Caption\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"PT Sans Narrow\";a:3:{s:5:\"label\";s:14:\"PT Sans Narrow\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"PT Serif\";a:3:{s:5:\"label\";s:8:\"PT Serif\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"PT Serif Caption\";a:3:{s:5:\"label\";s:16:\"PT Serif Caption\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Pacifico\";a:3:{s:5:\"label\";s:8:\"Pacifico\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Padauk\";a:3:{s:5:\"label\";s:6:\"Padauk\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Palanquin\";a:3:{s:5:\"label\";s:9:\"Palanquin\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Palanquin Dark\";a:3:{s:5:\"label\";s:14:\"Palanquin Dark\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Pangolin\";a:3:{s:5:\"label\";s:8:\"Pangolin\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Paprika\";a:3:{s:5:\"label\";s:7:\"Paprika\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Parisienne\";a:3:{s:5:\"label\";s:10:\"Parisienne\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:11:\"Passero One\";a:3:{s:5:\"label\";s:11:\"Passero One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Passion One\";a:3:{s:5:\"label\";s:11:\"Passion One\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:3:\"900\";i:2;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:18:\"Pathway Gothic One\";a:3:{s:5:\"label\";s:18:\"Pathway Gothic One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Patrick Hand\";a:3:{s:5:\"label\";s:12:\"Patrick Hand\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:15:\"Patrick Hand SC\";a:3:{s:5:\"label\";s:15:\"Patrick Hand SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Pattaya\";a:3:{s:5:\"label\";s:7:\"Pattaya\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Patua One\";a:3:{s:5:\"label\";s:9:\"Patua One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Pavanam\";a:3:{s:5:\"label\";s:7:\"Pavanam\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Paytone One\";a:3:{s:5:\"label\";s:11:\"Paytone One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Peddana\";a:3:{s:5:\"label\";s:7:\"Peddana\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Peralta\";a:3:{s:5:\"label\";s:7:\"Peralta\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Permanent Marker\";a:3:{s:5:\"label\";s:16:\"Permanent Marker\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:19:\"Petit Formal Script\";a:3:{s:5:\"label\";s:19:\"Petit Formal Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Petrona\";a:3:{s:5:\"label\";s:7:\"Petrona\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Philosopher\";a:3:{s:5:\"label\";s:11:\"Philosopher\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Piazzolla\";a:3:{s:5:\"label\";s:9:\"Piazzolla\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Piedra\";a:3:{s:5:\"label\";s:6:\"Piedra\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Pinyon Script\";a:3:{s:5:\"label\";s:13:\"Pinyon Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Pirata One\";a:3:{s:5:\"label\";s:10:\"Pirata One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Plaster\";a:3:{s:5:\"label\";s:7:\"Plaster\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Play\";a:3:{s:5:\"label\";s:4:\"Play\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Playball\";a:3:{s:5:\"label\";s:8:\"Playball\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Playfair Display\";a:3:{s:5:\"label\";s:16:\"Playfair Display\";s:8:\"variants\";a:12:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:3:\"900\";i:9;s:9:\"900italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:19:\"Playfair Display SC\";a:3:{s:5:\"label\";s:19:\"Playfair Display SC\";s:8:\"variants\";a:6:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:3:\"900\";i:3;s:9:\"900italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Podkova\";a:3:{s:5:\"label\";s:7:\"Podkova\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Poiret One\";a:3:{s:5:\"label\";s:10:\"Poiret One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Poller One\";a:3:{s:5:\"label\";s:10:\"Poller One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Poly\";a:3:{s:5:\"label\";s:4:\"Poly\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Pompiere\";a:3:{s:5:\"label\";s:8:\"Pompiere\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Pontano Sans\";a:3:{s:5:\"label\";s:12:\"Pontano Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Poor Story\";a:3:{s:5:\"label\";s:10:\"Poor Story\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Poppins\";a:3:{s:5:\"label\";s:7:\"Poppins\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Port Lligat Sans\";a:3:{s:5:\"label\";s:16:\"Port Lligat Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Port Lligat Slab\";a:3:{s:5:\"label\";s:16:\"Port Lligat Slab\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Potta One\";a:3:{s:5:\"label\";s:9:\"Potta One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Pragati Narrow\";a:3:{s:5:\"label\";s:14:\"Pragati Narrow\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Prata\";a:3:{s:5:\"label\";s:5:\"Prata\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Preahvihear\";a:3:{s:5:\"label\";s:11:\"Preahvihear\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Press Start 2P\";a:3:{s:5:\"label\";s:14:\"Press Start 2P\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Pridi\";a:3:{s:5:\"label\";s:5:\"Pridi\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Princess Sofia\";a:3:{s:5:\"label\";s:14:\"Princess Sofia\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Prociono\";a:3:{s:5:\"label\";s:8:\"Prociono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Prompt\";a:3:{s:5:\"label\";s:6:\"Prompt\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Prosto One\";a:3:{s:5:\"label\";s:10:\"Prosto One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Proza Libre\";a:3:{s:5:\"label\";s:11:\"Proza Libre\";s:8:\"variants\";a:10:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Public Sans\";a:3:{s:5:\"label\";s:11:\"Public Sans\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Puritan\";a:3:{s:5:\"label\";s:7:\"Puritan\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Purple Purse\";a:3:{s:5:\"label\";s:12:\"Purple Purse\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Qahiri\";a:3:{s:5:\"label\";s:6:\"Qahiri\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Quando\";a:3:{s:5:\"label\";s:6:\"Quando\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Quantico\";a:3:{s:5:\"label\";s:8:\"Quantico\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Quattrocento\";a:3:{s:5:\"label\";s:12:\"Quattrocento\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Quattrocento Sans\";a:3:{s:5:\"label\";s:17:\"Quattrocento Sans\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Questrial\";a:3:{s:5:\"label\";s:9:\"Questrial\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Quicksand\";a:3:{s:5:\"label\";s:9:\"Quicksand\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Quintessential\";a:3:{s:5:\"label\";s:14:\"Quintessential\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Qwigley\";a:3:{s:5:\"label\";s:7:\"Qwigley\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:15:\"Racing Sans One\";a:3:{s:5:\"label\";s:15:\"Racing Sans One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Radley\";a:3:{s:5:\"label\";s:6:\"Radley\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Rajdhani\";a:3:{s:5:\"label\";s:8:\"Rajdhani\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Rakkas\";a:3:{s:5:\"label\";s:6:\"Rakkas\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Raleway\";a:3:{s:5:\"label\";s:7:\"Raleway\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Raleway Dots\";a:3:{s:5:\"label\";s:12:\"Raleway Dots\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Ramabhadra\";a:3:{s:5:\"label\";s:10:\"Ramabhadra\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Ramaraja\";a:3:{s:5:\"label\";s:8:\"Ramaraja\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Rambla\";a:3:{s:5:\"label\";s:6:\"Rambla\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Rammetto One\";a:3:{s:5:\"label\";s:12:\"Rammetto One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Ranchers\";a:3:{s:5:\"label\";s:8:\"Ranchers\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Rancho\";a:3:{s:5:\"label\";s:6:\"Rancho\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Ranga\";a:3:{s:5:\"label\";s:5:\"Ranga\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Rasa\";a:3:{s:5:\"label\";s:4:\"Rasa\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Rationale\";a:3:{s:5:\"label\";s:9:\"Rationale\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Ravi Prakash\";a:3:{s:5:\"label\";s:12:\"Ravi Prakash\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Recursive\";a:3:{s:5:\"label\";s:9:\"Recursive\";s:8:\"variants\";a:7:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Red Hat Display\";a:3:{s:5:\"label\";s:15:\"Red Hat Display\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:3:\"900\";i:5;s:9:\"900italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Red Hat Text\";a:3:{s:5:\"label\";s:12:\"Red Hat Text\";s:8:\"variants\";a:6:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Red Rose\";a:3:{s:5:\"label\";s:8:\"Red Rose\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Redressed\";a:3:{s:5:\"label\";s:9:\"Redressed\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Reem Kufi\";a:3:{s:5:\"label\";s:9:\"Reem Kufi\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Reenie Beanie\";a:3:{s:5:\"label\";s:13:\"Reenie Beanie\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Reggae One\";a:3:{s:5:\"label\";s:10:\"Reggae One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Revalia\";a:3:{s:5:\"label\";s:7:\"Revalia\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Rhodium Libre\";a:3:{s:5:\"label\";s:13:\"Rhodium Libre\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Ribeye\";a:3:{s:5:\"label\";s:6:\"Ribeye\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Ribeye Marrow\";a:3:{s:5:\"label\";s:13:\"Ribeye Marrow\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Righteous\";a:3:{s:5:\"label\";s:9:\"Righteous\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Risque\";a:3:{s:5:\"label\";s:6:\"Risque\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Roboto\";a:3:{s:5:\"label\";s:6:\"Roboto\";s:8:\"variants\";a:12:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"900\";i:9;s:9:\"900italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Roboto Condensed\";a:3:{s:5:\"label\";s:16:\"Roboto Condensed\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Roboto Mono\";a:3:{s:5:\"label\";s:11:\"Roboto Mono\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:11:\"Roboto Slab\";a:3:{s:5:\"label\";s:11:\"Roboto Slab\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Rochester\";a:3:{s:5:\"label\";s:9:\"Rochester\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Rock Salt\";a:3:{s:5:\"label\";s:9:\"Rock Salt\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"RocknRoll One\";a:3:{s:5:\"label\";s:13:\"RocknRoll One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Rokkitt\";a:3:{s:5:\"label\";s:7:\"Rokkitt\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Romanesco\";a:3:{s:5:\"label\";s:9:\"Romanesco\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Ropa Sans\";a:3:{s:5:\"label\";s:9:\"Ropa Sans\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Rosario\";a:3:{s:5:\"label\";s:7:\"Rosario\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Rosarivo\";a:3:{s:5:\"label\";s:8:\"Rosarivo\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Rouge Script\";a:3:{s:5:\"label\";s:12:\"Rouge Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Rowdies\";a:3:{s:5:\"label\";s:7:\"Rowdies\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Rozha One\";a:3:{s:5:\"label\";s:9:\"Rozha One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Rubik\";a:3:{s:5:\"label\";s:5:\"Rubik\";s:8:\"variants\";a:14:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"800\";i:9;s:9:\"800italic\";i:10;s:3:\"900\";i:11;s:9:\"900italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Rubik Mono One\";a:3:{s:5:\"label\";s:14:\"Rubik Mono One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Ruda\";a:3:{s:5:\"label\";s:4:\"Ruda\";s:8:\"variants\";a:6:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Rufina\";a:3:{s:5:\"label\";s:6:\"Rufina\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Ruge Boogie\";a:3:{s:5:\"label\";s:11:\"Ruge Boogie\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Ruluko\";a:3:{s:5:\"label\";s:6:\"Ruluko\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Rum Raisin\";a:3:{s:5:\"label\";s:10:\"Rum Raisin\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Ruslan Display\";a:3:{s:5:\"label\";s:14:\"Ruslan Display\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Russo One\";a:3:{s:5:\"label\";s:9:\"Russo One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Ruthie\";a:3:{s:5:\"label\";s:6:\"Ruthie\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:3:\"Rye\";a:3:{s:5:\"label\";s:3:\"Rye\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"STIX Two Math\";a:3:{s:5:\"label\";s:13:\"STIX Two Math\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Sacramento\";a:3:{s:5:\"label\";s:10:\"Sacramento\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Sahitya\";a:3:{s:5:\"label\";s:7:\"Sahitya\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Sail\";a:3:{s:5:\"label\";s:4:\"Sail\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Saira\";a:3:{s:5:\"label\";s:5:\"Saira\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Saira Condensed\";a:3:{s:5:\"label\";s:15:\"Saira Condensed\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Saira Extra Condensed\";a:3:{s:5:\"label\";s:21:\"Saira Extra Condensed\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Saira Semi Condensed\";a:3:{s:5:\"label\";s:20:\"Saira Semi Condensed\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Saira Stencil One\";a:3:{s:5:\"label\";s:17:\"Saira Stencil One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Salsa\";a:3:{s:5:\"label\";s:5:\"Salsa\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Sanchez\";a:3:{s:5:\"label\";s:7:\"Sanchez\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Sancreek\";a:3:{s:5:\"label\";s:8:\"Sancreek\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Sansita\";a:3:{s:5:\"label\";s:7:\"Sansita\";s:8:\"variants\";a:8:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:3:\"800\";i:3;s:9:\"800italic\";i:4;s:3:\"900\";i:5;s:9:\"900italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Sansita Swashed\";a:3:{s:5:\"label\";s:15:\"Sansita Swashed\";s:8:\"variants\";a:7:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Sarabun\";a:3:{s:5:\"label\";s:7:\"Sarabun\";s:8:\"variants\";a:16:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Sarala\";a:3:{s:5:\"label\";s:6:\"Sarala\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Sarina\";a:3:{s:5:\"label\";s:6:\"Sarina\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Sarpanch\";a:3:{s:5:\"label\";s:8:\"Sarpanch\";s:8:\"variants\";a:6:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Satisfy\";a:3:{s:5:\"label\";s:7:\"Satisfy\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:15:\"Sawarabi Gothic\";a:3:{s:5:\"label\";s:15:\"Sawarabi Gothic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Sawarabi Mincho\";a:3:{s:5:\"label\";s:15:\"Sawarabi Mincho\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Scada\";a:3:{s:5:\"label\";s:5:\"Scada\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Scheherazade\";a:3:{s:5:\"label\";s:12:\"Scheherazade\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Schoolbell\";a:3:{s:5:\"label\";s:10:\"Schoolbell\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Scope One\";a:3:{s:5:\"label\";s:9:\"Scope One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Seaweed Script\";a:3:{s:5:\"label\";s:14:\"Seaweed Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Secular One\";a:3:{s:5:\"label\";s:11:\"Secular One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Sedgwick Ave\";a:3:{s:5:\"label\";s:12:\"Sedgwick Ave\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:20:\"Sedgwick Ave Display\";a:3:{s:5:\"label\";s:20:\"Sedgwick Ave Display\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:3:\"Sen\";a:3:{s:5:\"label\";s:3:\"Sen\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:3:\"800\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Sevillana\";a:3:{s:5:\"label\";s:9:\"Sevillana\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Seymour One\";a:3:{s:5:\"label\";s:11:\"Seymour One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Shadows Into Light\";a:3:{s:5:\"label\";s:18:\"Shadows Into Light\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:22:\"Shadows Into Light Two\";a:3:{s:5:\"label\";s:22:\"Shadows Into Light Two\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Shanti\";a:3:{s:5:\"label\";s:6:\"Shanti\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Share\";a:3:{s:5:\"label\";s:5:\"Share\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Share Tech\";a:3:{s:5:\"label\";s:10:\"Share Tech\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Share Tech Mono\";a:3:{s:5:\"label\";s:15:\"Share Tech Mono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:15:\"Shippori Mincho\";a:3:{s:5:\"label\";s:15:\"Shippori Mincho\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"Shippori Mincho B1\";a:3:{s:5:\"label\";s:18:\"Shippori Mincho B1\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Shojumaru\";a:3:{s:5:\"label\";s:9:\"Shojumaru\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Short Stack\";a:3:{s:5:\"label\";s:11:\"Short Stack\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Shrikhand\";a:3:{s:5:\"label\";s:9:\"Shrikhand\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Siemreap\";a:3:{s:5:\"label\";s:8:\"Siemreap\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Sigmar One\";a:3:{s:5:\"label\";s:10:\"Sigmar One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Signika\";a:3:{s:5:\"label\";s:7:\"Signika\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Signika Negative\";a:3:{s:5:\"label\";s:16:\"Signika Negative\";s:8:\"variants\";a:4:{i:0;s:3:\"300\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Simonetta\";a:3:{s:5:\"label\";s:9:\"Simonetta\";s:8:\"variants\";a:4:{i:0;s:3:\"900\";i:1;s:9:\"900italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Single Day\";a:3:{s:5:\"label\";s:10:\"Single Day\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Sintony\";a:3:{s:5:\"label\";s:7:\"Sintony\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Sirin Stencil\";a:3:{s:5:\"label\";s:13:\"Sirin Stencil\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Six Caps\";a:3:{s:5:\"label\";s:8:\"Six Caps\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Skranji\";a:3:{s:5:\"label\";s:7:\"Skranji\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Slabo 13px\";a:3:{s:5:\"label\";s:10:\"Slabo 13px\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Slabo 27px\";a:3:{s:5:\"label\";s:10:\"Slabo 27px\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Slackey\";a:3:{s:5:\"label\";s:7:\"Slackey\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Smokum\";a:3:{s:5:\"label\";s:6:\"Smokum\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Smythe\";a:3:{s:5:\"label\";s:6:\"Smythe\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Sniglet\";a:3:{s:5:\"label\";s:7:\"Sniglet\";s:8:\"variants\";a:2:{i:0;s:3:\"800\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Snippet\";a:3:{s:5:\"label\";s:7:\"Snippet\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Snowburst One\";a:3:{s:5:\"label\";s:13:\"Snowburst One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Sofadi One\";a:3:{s:5:\"label\";s:10:\"Sofadi One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Sofia\";a:3:{s:5:\"label\";s:5:\"Sofia\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Solway\";a:3:{s:5:\"label\";s:6:\"Solway\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Song Myung\";a:3:{s:5:\"label\";s:10:\"Song Myung\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Sonsie One\";a:3:{s:5:\"label\";s:10:\"Sonsie One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Sora\";a:3:{s:5:\"label\";s:4:\"Sora\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Sorts Mill Goudy\";a:3:{s:5:\"label\";s:16:\"Sorts Mill Goudy\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"Source Code Pro\";a:3:{s:5:\"label\";s:15:\"Source Code Pro\";s:8:\"variants\";a:14:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"900\";i:11;s:9:\"900italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:15:\"Source Sans Pro\";a:3:{s:5:\"label\";s:15:\"Source Sans Pro\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"900\";i:9;s:9:\"900italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Source Serif Pro\";a:3:{s:5:\"label\";s:16:\"Source Serif Pro\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"900\";i:9;s:9:\"900italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Space Grotesk\";a:3:{s:5:\"label\";s:13:\"Space Grotesk\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Space Mono\";a:3:{s:5:\"label\";s:10:\"Space Mono\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:7:\"Spartan\";a:3:{s:5:\"label\";s:7:\"Spartan\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Special Elite\";a:3:{s:5:\"label\";s:13:\"Special Elite\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Spectral\";a:3:{s:5:\"label\";s:8:\"Spectral\";s:8:\"variants\";a:14:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Spectral SC\";a:3:{s:5:\"label\";s:11:\"Spectral SC\";s:8:\"variants\";a:14:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Spicy Rice\";a:3:{s:5:\"label\";s:10:\"Spicy Rice\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Spinnaker\";a:3:{s:5:\"label\";s:9:\"Spinnaker\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Spirax\";a:3:{s:5:\"label\";s:6:\"Spirax\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Squada One\";a:3:{s:5:\"label\";s:10:\"Squada One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:20:\"Sree Krushnadevaraya\";a:3:{s:5:\"label\";s:20:\"Sree Krushnadevaraya\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Sriracha\";a:3:{s:5:\"label\";s:8:\"Sriracha\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Srisakdi\";a:3:{s:5:\"label\";s:8:\"Srisakdi\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Staatliches\";a:3:{s:5:\"label\";s:11:\"Staatliches\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Stalemate\";a:3:{s:5:\"label\";s:9:\"Stalemate\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Stalinist One\";a:3:{s:5:\"label\";s:13:\"Stalinist One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Stardos Stencil\";a:3:{s:5:\"label\";s:15:\"Stardos Stencil\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Stick\";a:3:{s:5:\"label\";s:5:\"Stick\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Stint Ultra Condensed\";a:3:{s:5:\"label\";s:21:\"Stint Ultra Condensed\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:20:\"Stint Ultra Expanded\";a:3:{s:5:\"label\";s:20:\"Stint Ultra Expanded\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Stoke\";a:3:{s:5:\"label\";s:5:\"Stoke\";s:8:\"variants\";a:2:{i:0;s:3:\"300\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Strait\";a:3:{s:5:\"label\";s:6:\"Strait\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Stylish\";a:3:{s:5:\"label\";s:7:\"Stylish\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Sue Ellen Francisco\";a:3:{s:5:\"label\";s:19:\"Sue Ellen Francisco\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Suez One\";a:3:{s:5:\"label\";s:8:\"Suez One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Sulphur Point\";a:3:{s:5:\"label\";s:13:\"Sulphur Point\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Sumana\";a:3:{s:5:\"label\";s:6:\"Sumana\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Sunflower\";a:3:{s:5:\"label\";s:9:\"Sunflower\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"700\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Sunshiney\";a:3:{s:5:\"label\";s:9:\"Sunshiney\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:16:\"Supermercado One\";a:3:{s:5:\"label\";s:16:\"Supermercado One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Sura\";a:3:{s:5:\"label\";s:4:\"Sura\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Suranna\";a:3:{s:5:\"label\";s:7:\"Suranna\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Suravaram\";a:3:{s:5:\"label\";s:9:\"Suravaram\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Suwannaphum\";a:3:{s:5:\"label\";s:11:\"Suwannaphum\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:18:\"Swanky and Moo Moo\";a:3:{s:5:\"label\";s:18:\"Swanky and Moo Moo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Syncopate\";a:3:{s:5:\"label\";s:9:\"Syncopate\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Syne\";a:3:{s:5:\"label\";s:4:\"Syne\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Syne Mono\";a:3:{s:5:\"label\";s:9:\"Syne Mono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:12:\"Syne Tactile\";a:3:{s:5:\"label\";s:12:\"Syne Tactile\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Tajawal\";a:3:{s:5:\"label\";s:7:\"Tajawal\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Tangerine\";a:3:{s:5:\"label\";s:9:\"Tangerine\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Taprom\";a:3:{s:5:\"label\";s:6:\"Taprom\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Tauri\";a:3:{s:5:\"label\";s:5:\"Tauri\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Taviraj\";a:3:{s:5:\"label\";s:7:\"Taviraj\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Teko\";a:3:{s:5:\"label\";s:4:\"Teko\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Telex\";a:3:{s:5:\"label\";s:5:\"Telex\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Tenali Ramakrishna\";a:3:{s:5:\"label\";s:18:\"Tenali Ramakrishna\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Tenor Sans\";a:3:{s:5:\"label\";s:10:\"Tenor Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Text Me One\";a:3:{s:5:\"label\";s:11:\"Text Me One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Texturina\";a:3:{s:5:\"label\";s:9:\"Texturina\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Thasadith\";a:3:{s:5:\"label\";s:9:\"Thasadith\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"The Girl Next Door\";a:3:{s:5:\"label\";s:18:\"The Girl Next Door\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Tienne\";a:3:{s:5:\"label\";s:6:\"Tienne\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:3:\"900\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Tillana\";a:3:{s:5:\"label\";s:7:\"Tillana\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Timmana\";a:3:{s:5:\"label\";s:7:\"Timmana\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Tinos\";a:3:{s:5:\"label\";s:5:\"Tinos\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Titan One\";a:3:{s:5:\"label\";s:9:\"Titan One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Titillium Web\";a:3:{s:5:\"label\";s:13:\"Titillium Web\";s:8:\"variants\";a:11:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"900\";i:9;s:6:\"italic\";i:10;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Tomorrow\";a:3:{s:5:\"label\";s:8:\"Tomorrow\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Tourney\";a:3:{s:5:\"label\";s:7:\"Tourney\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Trade Winds\";a:3:{s:5:\"label\";s:11:\"Trade Winds\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Train One\";a:3:{s:5:\"label\";s:9:\"Train One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Trirong\";a:3:{s:5:\"label\";s:7:\"Trirong\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Trispace\";a:3:{s:5:\"label\";s:8:\"Trispace\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Trocchi\";a:3:{s:5:\"label\";s:7:\"Trocchi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Trochut\";a:3:{s:5:\"label\";s:7:\"Trochut\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Truculenta\";a:3:{s:5:\"label\";s:10:\"Truculenta\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Trykker\";a:3:{s:5:\"label\";s:7:\"Trykker\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Tulpen One\";a:3:{s:5:\"label\";s:10:\"Tulpen One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Turret Road\";a:3:{s:5:\"label\";s:11:\"Turret Road\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Ubuntu\";a:3:{s:5:\"label\";s:6:\"Ubuntu\";s:8:\"variants\";a:8:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Ubuntu Condensed\";a:3:{s:5:\"label\";s:16:\"Ubuntu Condensed\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Ubuntu Mono\";a:3:{s:5:\"label\";s:11:\"Ubuntu Mono\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:5:\"Uchen\";a:3:{s:5:\"label\";s:5:\"Uchen\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Ultra\";a:3:{s:5:\"label\";s:5:\"Ultra\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Uncial Antiqua\";a:3:{s:5:\"label\";s:14:\"Uncial Antiqua\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Underdog\";a:3:{s:5:\"label\";s:8:\"Underdog\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Unica One\";a:3:{s:5:\"label\";s:9:\"Unica One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"UnifrakturCook\";a:3:{s:5:\"label\";s:14:\"UnifrakturCook\";s:8:\"variants\";a:1:{i:0;s:3:\"700\";}s:8:\"category\";s:7:\"display\";}s:18:\"UnifrakturMaguntia\";a:3:{s:5:\"label\";s:18:\"UnifrakturMaguntia\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Unkempt\";a:3:{s:5:\"label\";s:7:\"Unkempt\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Unlock\";a:3:{s:5:\"label\";s:6:\"Unlock\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Unna\";a:3:{s:5:\"label\";s:4:\"Unna\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"VT323\";a:3:{s:5:\"label\";s:5:\"VT323\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:11:\"Vampiro One\";a:3:{s:5:\"label\";s:11:\"Vampiro One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Varela\";a:3:{s:5:\"label\";s:6:\"Varela\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Varela Round\";a:3:{s:5:\"label\";s:12:\"Varela Round\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Varta\";a:3:{s:5:\"label\";s:5:\"Varta\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Vast Shadow\";a:3:{s:5:\"label\";s:11:\"Vast Shadow\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Vesper Libre\";a:3:{s:5:\"label\";s:12:\"Vesper Libre\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"700\";i:2;s:3:\"900\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Viaoda Libre\";a:3:{s:5:\"label\";s:12:\"Viaoda Libre\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Vibes\";a:3:{s:5:\"label\";s:5:\"Vibes\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Vibur\";a:3:{s:5:\"label\";s:5:\"Vibur\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Vidaloka\";a:3:{s:5:\"label\";s:8:\"Vidaloka\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Viga\";a:3:{s:5:\"label\";s:4:\"Viga\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Voces\";a:3:{s:5:\"label\";s:5:\"Voces\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Volkhov\";a:3:{s:5:\"label\";s:7:\"Volkhov\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Vollkorn\";a:3:{s:5:\"label\";s:8:\"Vollkorn\";s:8:\"variants\";a:12:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:3:\"900\";i:9;s:9:\"900italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Vollkorn SC\";a:3:{s:5:\"label\";s:11:\"Vollkorn SC\";s:8:\"variants\";a:4:{i:0;s:3:\"600\";i:1;s:3:\"700\";i:2;s:3:\"900\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Voltaire\";a:3:{s:5:\"label\";s:8:\"Voltaire\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:23:\"Waiting for the Sunrise\";a:3:{s:5:\"label\";s:23:\"Waiting for the Sunrise\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Wallpoet\";a:3:{s:5:\"label\";s:8:\"Wallpoet\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Walter Turncoat\";a:3:{s:5:\"label\";s:15:\"Walter Turncoat\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Warnes\";a:3:{s:5:\"label\";s:6:\"Warnes\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Wellfleet\";a:3:{s:5:\"label\";s:9:\"Wellfleet\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Wendy One\";a:3:{s:5:\"label\";s:9:\"Wendy One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Wire One\";a:3:{s:5:\"label\";s:8:\"Wire One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Work Sans\";a:3:{s:5:\"label\";s:9:\"Work Sans\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Xanh Mono\";a:3:{s:5:\"label\";s:9:\"Xanh Mono\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:17:\"Yanone Kaffeesatz\";a:3:{s:5:\"label\";s:17:\"Yanone Kaffeesatz\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Yantramanav\";a:3:{s:5:\"label\";s:11:\"Yantramanav\";s:8:\"variants\";a:6:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Yatra One\";a:3:{s:5:\"label\";s:9:\"Yatra One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Yellowtail\";a:3:{s:5:\"label\";s:10:\"Yellowtail\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Yeon Sung\";a:3:{s:5:\"label\";s:9:\"Yeon Sung\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Yeseva One\";a:3:{s:5:\"label\";s:10:\"Yeseva One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Yesteryear\";a:3:{s:5:\"label\";s:10:\"Yesteryear\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Yomogi\";a:3:{s:5:\"label\";s:6:\"Yomogi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:4:\"Yrsa\";a:3:{s:5:\"label\";s:4:\"Yrsa\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Yusei Magic\";a:3:{s:5:\"label\";s:11:\"Yusei Magic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"ZCOOL KuaiLe\";a:3:{s:5:\"label\";s:12:\"ZCOOL KuaiLe\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:21:\"ZCOOL QingKe HuangYou\";a:3:{s:5:\"label\";s:21:\"ZCOOL QingKe HuangYou\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"ZCOOL XiaoWei\";a:3:{s:5:\"label\";s:13:\"ZCOOL XiaoWei\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Zen Dots\";a:3:{s:5:\"label\";s:8:\"Zen Dots\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Zen Loop\";a:3:{s:5:\"label\";s:8:\"Zen Loop\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Zen Tokyo Zoo\";a:3:{s:5:\"label\";s:13:\"Zen Tokyo Zoo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Zeyada\";a:3:{s:5:\"label\";s:6:\"Zeyada\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Zhi Mang Xing\";a:3:{s:5:\"label\";s:13:\"Zhi Mang Xing\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Zilla Slab\";a:3:{s:5:\"label\";s:10:\"Zilla Slab\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:20:\"Zilla Slab Highlight\";a:3:{s:5:\"label\";s:20:\"Zilla Slab Highlight\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}}','no'),(2683,'_site_transient_timeout_browser_704e4eb73394a95d1282c9ed2e114611','1653562225','no'),(2684,'_site_transient_browser_704e4eb73394a95d1282c9ed2e114611','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"101.0.4951.67\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(2685,'_site_transient_timeout_community-events-88da01ce9261ac07997f7c2d386ee71f','1653000634','no'),(2686,'_site_transient_community-events-88da01ce9261ac07997f7c2d386ee71f','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:20:\"2409:4073:313:5f6c::\";}s:6:\"events\";a:0:{}}','no'),(2687,'_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a','1652968382','no'),(2688,'_site_transient_poptags_40cd750bba9870f18aada2478b24840a','O:8:\"stdClass\":100:{s:11:\"woocommerce\";a:3:{s:4:\"name\";s:11:\"woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:5:\"count\";i:5509;}s:6:\"widget\";a:3:{s:4:\"name\";s:6:\"widget\";s:4:\"slug\";s:6:\"widget\";s:5:\"count\";i:4788;}s:4:\"post\";a:3:{s:4:\"name\";s:4:\"post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";i:2756;}s:5:\"admin\";a:3:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\";s:5:\"admin\";s:5:\"count\";i:2628;}s:5:\"posts\";a:3:{s:4:\"name\";s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";i:2030;}s:9:\"shortcode\";a:3:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortcode\";s:5:\"count\";i:1877;}s:8:\"comments\";a:3:{s:4:\"name\";s:8:\"comments\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";i:1874;}s:3:\"seo\";a:3:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\";s:3:\"seo\";s:5:\"count\";i:1562;}s:6:\"images\";a:3:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";s:5:\"count\";i:1542;}s:6:\"google\";a:3:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"count\";i:1521;}s:5:\"image\";a:3:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";i:1517;}s:7:\"twitter\";a:3:{s:4:\"name\";s:7:\"twitter\";s:4:\"slug\";s:7:\"twitter\";s:5:\"count\";i:1507;}s:8:\"facebook\";a:3:{s:4:\"name\";s:8:\"facebook\";s:4:\"slug\";s:8:\"facebook\";s:5:\"count\";i:1488;}s:9:\"ecommerce\";a:3:{s:4:\"name\";s:9:\"ecommerce\";s:4:\"slug\";s:9:\"ecommerce\";s:5:\"count\";i:1372;}s:5:\"email\";a:3:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";s:5:\"email\";s:5:\"count\";i:1320;}s:7:\"sidebar\";a:3:{s:4:\"name\";s:7:\"sidebar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";i:1314;}s:7:\"gallery\";a:3:{s:4:\"name\";s:7:\"gallery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";i:1252;}s:4:\"page\";a:3:{s:4:\"name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";i:1169;}s:6:\"social\";a:3:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"social\";s:5:\"count\";i:1144;}s:5:\"login\";a:3:{s:4:\"name\";s:5:\"login\";s:4:\"slug\";s:5:\"login\";s:5:\"count\";i:1103;}s:8:\"security\";a:3:{s:4:\"name\";s:8:\"security\";s:4:\"slug\";s:8:\"security\";s:5:\"count\";i:1011;}s:5:\"video\";a:3:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";i:963;}s:10:\"e-commerce\";a:3:{s:4:\"name\";s:10:\"e-commerce\";s:4:\"slug\";s:10:\"e-commerce\";s:5:\"count\";i:956;}s:7:\"widgets\";a:3:{s:4:\"name\";s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";i:935;}s:5:\"links\";a:3:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\";i:896;}s:4:\"spam\";a:3:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:4:\"spam\";s:5:\"count\";i:850;}s:7:\"content\";a:3:{s:4:\"name\";s:7:\"content\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";i:843;}s:6:\"slider\";a:3:{s:4:\"name\";s:6:\"slider\";s:4:\"slug\";s:6:\"slider\";s:5:\"count\";i:840;}s:9:\"analytics\";a:3:{s:4:\"name\";s:9:\"analytics\";s:4:\"slug\";s:9:\"analytics\";s:5:\"count\";i:838;}s:4:\"form\";a:3:{s:4:\"name\";s:4:\"form\";s:4:\"slug\";s:4:\"form\";s:5:\"count\";i:824;}s:7:\"payment\";a:3:{s:4:\"name\";s:7:\"payment\";s:4:\"slug\";s:7:\"payment\";s:5:\"count\";i:795;}s:5:\"media\";a:3:{s:4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";i:777;}s:10:\"buddypress\";a:3:{s:4:\"name\";s:10:\"buddypress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";i:773;}s:6:\"search\";a:3:{s:4:\"name\";s:6:\"search\";s:4:\"slug\";s:6:\"search\";s:5:\"count\";i:754;}s:6:\"editor\";a:3:{s:4:\"name\";s:6:\"editor\";s:4:\"slug\";s:6:\"editor\";s:5:\"count\";i:753;}s:9:\"gutenberg\";a:3:{s:4:\"name\";s:9:\"gutenberg\";s:4:\"slug\";s:9:\"gutenberg\";s:5:\"count\";i:735;}s:3:\"rss\";a:3:{s:4:\"name\";s:3:\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";i:728;}s:5:\"pages\";a:3:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5:\"count\";i:723;}s:4:\"menu\";a:3:{s:4:\"name\";s:4:\"menu\";s:4:\"slug\";s:4:\"menu\";s:5:\"count\";i:705;}s:15:\"payment-gateway\";a:3:{s:4:\"name\";s:15:\"payment gateway\";s:4:\"slug\";s:15:\"payment-gateway\";s:5:\"count\";i:698;}s:12:\"contact-form\";a:3:{s:4:\"name\";s:12:\"contact form\";s:4:\"slug\";s:12:\"contact-form\";s:5:\"count\";i:695;}s:4:\"feed\";a:3:{s:4:\"name\";s:4:\"feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";i:673;}s:8:\"category\";a:3:{s:4:\"name\";s:8:\"category\";s:4:\"slug\";s:8:\"category\";s:5:\"count\";i:671;}s:5:\"embed\";a:3:{s:4:\"name\";s:5:\"embed\";s:4:\"slug\";s:5:\"embed\";s:5:\"count\";i:671;}s:6:\"jquery\";a:3:{s:4:\"name\";s:6:\"jquery\";s:4:\"slug\";s:6:\"jquery\";s:5:\"count\";i:667;}s:4:\"ajax\";a:3:{s:4:\"name\";s:4:\"ajax\";s:4:\"slug\";s:4:\"ajax\";s:5:\"count\";i:665;}s:5:\"block\";a:3:{s:4:\"name\";s:5:\"block\";s:4:\"slug\";s:5:\"block\";s:5:\"count\";i:657;}s:9:\"elementor\";a:3:{s:4:\"name\";s:9:\"elementor\";s:4:\"slug\";s:9:\"elementor\";s:5:\"count\";i:632;}s:7:\"youtube\";a:3:{s:4:\"name\";s:7:\"youtube\";s:4:\"slug\";s:7:\"youtube\";s:5:\"count\";i:615;}s:3:\"css\";a:3:{s:4:\"name\";s:3:\"css\";s:4:\"slug\";s:3:\"css\";s:5:\"count\";i:610;}s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";i:601;}s:10:\"javascript\";a:3:{s:4:\"name\";s:10:\"javascript\";s:4:\"slug\";s:10:\"javascript\";s:5:\"count\";i:599;}s:9:\"affiliate\";a:3:{s:4:\"name\";s:9:\"affiliate\";s:4:\"slug\";s:9:\"affiliate\";s:5:\"count\";i:593;}s:5:\"share\";a:3:{s:4:\"name\";s:5:\"share\";s:4:\"slug\";s:5:\"share\";s:5:\"count\";i:584;}s:3:\"api\";a:3:{s:4:\"name\";s:3:\"api\";s:4:\"slug\";s:3:\"api\";s:5:\"count\";i:582;}s:10:\"responsive\";a:3:{s:4:\"name\";s:10:\"responsive\";s:4:\"slug\";s:10:\"responsive\";s:5:\"count\";i:574;}s:5:\"theme\";a:3:{s:4:\"name\";s:5:\"theme\";s:4:\"slug\";s:5:\"theme\";s:5:\"count\";i:574;}s:9:\"dashboard\";a:3:{s:4:\"name\";s:9:\"dashboard\";s:4:\"slug\";s:9:\"dashboard\";s:5:\"count\";i:573;}s:7:\"contact\";a:3:{s:4:\"name\";s:7:\"contact\";s:4:\"slug\";s:7:\"contact\";s:5:\"count\";i:567;}s:7:\"comment\";a:3:{s:4:\"name\";s:7:\"comment\";s:4:\"slug\";s:7:\"comment\";s:5:\"count\";i:564;}s:3:\"ads\";a:3:{s:4:\"name\";s:3:\"ads\";s:4:\"slug\";s:3:\"ads\";s:5:\"count\";i:556;}s:6:\"custom\";a:3:{s:4:\"name\";s:6:\"custom\";s:4:\"slug\";s:6:\"custom\";s:5:\"count\";i:549;}s:10:\"categories\";a:3:{s:4:\"name\";s:10:\"categories\";s:4:\"slug\";s:10:\"categories\";s:5:\"count\";i:536;}s:9:\"marketing\";a:3:{s:4:\"name\";s:9:\"marketing\";s:4:\"slug\";s:9:\"marketing\";s:5:\"count\";i:530;}s:4:\"user\";a:3:{s:4:\"name\";s:4:\"user\";s:4:\"slug\";s:4:\"user\";s:5:\"count\";i:529;}s:6:\"events\";a:3:{s:4:\"name\";s:6:\"events\";s:4:\"slug\";s:6:\"events\";s:5:\"count\";i:526;}s:6:\"button\";a:3:{s:4:\"name\";s:6:\"button\";s:4:\"slug\";s:6:\"button\";s:5:\"count\";i:521;}s:4:\"chat\";a:3:{s:4:\"name\";s:4:\"chat\";s:4:\"slug\";s:4:\"chat\";s:5:\"count\";i:514;}s:6:\"mobile\";a:3:{s:4:\"name\";s:6:\"mobile\";s:4:\"slug\";s:6:\"mobile\";s:5:\"count\";i:506;}s:8:\"shipping\";a:3:{s:4:\"name\";s:8:\"shipping\";s:4:\"slug\";s:8:\"shipping\";s:5:\"count\";i:506;}s:4:\"tags\";a:3:{s:4:\"name\";s:4:\"tags\";s:4:\"slug\";s:4:\"tags\";s:5:\"count\";i:505;}s:14:\"contact-form-7\";a:3:{s:4:\"name\";s:14:\"contact form 7\";s:4:\"slug\";s:14:\"contact-form-7\";s:5:\"count\";i:495;}s:5:\"popup\";a:3:{s:4:\"name\";s:5:\"popup\";s:4:\"slug\";s:5:\"popup\";s:5:\"count\";i:494;}s:5:\"users\";a:3:{s:4:\"name\";s:5:\"users\";s:4:\"slug\";s:5:\"users\";s:5:\"count\";i:494;}s:5:\"forms\";a:3:{s:4:\"name\";s:5:\"forms\";s:4:\"slug\";s:5:\"forms\";s:5:\"count\";i:492;}s:8:\"calendar\";a:3:{s:4:\"name\";s:8:\"calendar\";s:4:\"slug\";s:8:\"calendar\";s:5:\"count\";i:484;}s:10:\"newsletter\";a:3:{s:4:\"name\";s:10:\"newsletter\";s:4:\"slug\";s:10:\"newsletter\";s:5:\"count\";i:460;}s:10:\"navigation\";a:3:{s:4:\"name\";s:10:\"navigation\";s:4:\"slug\";s:10:\"navigation\";s:5:\"count\";i:456;}s:11:\"performance\";a:3:{s:4:\"name\";s:11:\"performance\";s:4:\"slug\";s:11:\"performance\";s:5:\"count\";i:454;}s:5:\"photo\";a:3:{s:4:\"name\";s:5:\"photo\";s:4:\"slug\";s:5:\"photo\";s:5:\"count\";i:451;}s:9:\"slideshow\";a:3:{s:4:\"name\";s:9:\"slideshow\";s:4:\"slug\";s:9:\"slideshow\";s:5:\"count\";i:444;}s:5:\"stats\";a:3:{s:4:\"name\";s:5:\"stats\";s:4:\"slug\";s:5:\"stats\";s:5:\"count\";i:438;}s:10:\"statistics\";a:3:{s:4:\"name\";s:10:\"statistics\";s:4:\"slug\";s:10:\"statistics\";s:5:\"count\";i:431;}s:6:\"photos\";a:3:{s:4:\"name\";s:6:\"photos\";s:4:\"slug\";s:6:\"photos\";s:5:\"count\";i:426;}s:12:\"social-media\";a:3:{s:4:\"name\";s:12:\"social media\";s:4:\"slug\";s:12:\"social-media\";s:5:\"count\";i:422;}s:8:\"redirect\";a:3:{s:4:\"name\";s:8:\"redirect\";s:4:\"slug\";s:8:\"redirect\";s:5:\"count\";i:417;}s:6:\"blocks\";a:3:{s:4:\"name\";s:6:\"blocks\";s:4:\"slug\";s:6:\"blocks\";s:5:\"count\";i:417;}s:4:\"news\";a:3:{s:4:\"name\";s:4:\"news\";s:4:\"slug\";s:4:\"news\";s:5:\"count\";i:412;}s:12:\"notification\";a:3:{s:4:\"name\";s:12:\"notification\";s:4:\"slug\";s:12:\"notification\";s:5:\"count\";i:408;}s:10:\"shortcodes\";a:3:{s:4:\"name\";s:10:\"shortcodes\";s:4:\"slug\";s:10:\"shortcodes\";s:5:\"count\";i:405;}s:6:\"import\";a:3:{s:4:\"name\";s:6:\"import\";s:4:\"slug\";s:6:\"import\";s:5:\"count\";i:395;}s:4:\"code\";a:3:{s:4:\"name\";s:4:\"code\";s:4:\"slug\";s:4:\"code\";s:5:\"count\";i:395;}s:8:\"tracking\";a:3:{s:4:\"name\";s:8:\"tracking\";s:4:\"slug\";s:8:\"tracking\";s:5:\"count\";i:393;}s:7:\"plugins\";a:3:{s:4:\"name\";s:7:\"plugins\";s:4:\"slug\";s:7:\"plugins\";s:5:\"count\";i:393;}s:9:\"multisite\";a:3:{s:4:\"name\";s:9:\"multisite\";s:4:\"slug\";s:9:\"multisite\";s:5:\"count\";i:391;}s:3:\"url\";a:3:{s:4:\"name\";s:3:\"url\";s:4:\"slug\";s:3:\"url\";s:5:\"count\";i:385;}s:7:\"gateway\";a:3:{s:4:\"name\";s:7:\"gateway\";s:4:\"slug\";s:7:\"gateway\";s:5:\"count\";i:383;}s:4:\"meta\";a:3:{s:4:\"name\";s:4:\"meta\";s:4:\"slug\";s:4:\"meta\";s:5:\"count\";i:378;}s:4:\"list\";a:3:{s:4:\"name\";s:4:\"list\";s:4:\"slug\";s:4:\"list\";s:5:\"count\";i:376;}s:5:\"cache\";a:3:{s:4:\"name\";s:5:\"cache\";s:4:\"slug\";s:5:\"cache\";s:5:\"count\";i:371;}}','no'),(2693,'_site_transient_update_plugins','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1652962153;s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:12:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"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:19:\"chaty/cht-icons.php\";O:8:\"stdClass\":10:{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:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":10:{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:51:\"counter-number-showcase/counter-number-showcase.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:37:\"w.org/plugins/counter-number-showcase\";s:4:\"slug\";s:23:\"counter-number-showcase\";s:6:\"plugin\";s:51:\"counter-number-showcase/counter-number-showcase.php\";s:11:\"new_version\";s:5:\"1.2.8\";s:3:\"url\";s:54:\"https://wordpress.org/plugins/counter-number-showcase/\";s:7:\"package\";s:72:\"https://downloads.wordpress.org/plugin/counter-number-showcase.1.2.8.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/counter-number-showcase/assets/icon-256x256.png?rev=1704297\";s:2:\"1x\";s:76:\"https://ps.w.org/counter-number-showcase/assets/icon-128x128.png?rev=1704297\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:78:\"https://ps.w.org/counter-number-showcase/assets/banner-772x250.jpg?rev=1704297\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:73:\"country-phone-field-contact-form-7/country-phone-field-contact-form-7.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:48:\"w.org/plugins/country-phone-field-contact-form-7\";s:4:\"slug\";s:34:\"country-phone-field-contact-form-7\";s:6:\"plugin\";s:73:\"country-phone-field-contact-form-7/country-phone-field-contact-form-7.php\";s:11:\"new_version\";s:5:\"2.2.9\";s:3:\"url\";s:65:\"https://wordpress.org/plugins/country-phone-field-contact-form-7/\";s:7:\"package\";s:77:\"https://downloads.wordpress.org/plugin/country-phone-field-contact-form-7.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:87:\"https://ps.w.org/country-phone-field-contact-form-7/assets/icon-256x256.png?rev=2064274\";s:2:\"1x\";s:87:\"https://ps.w.org/country-phone-field-contact-form-7/assets/icon-128x128.png?rev=2064274\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:45:\"everest-counter-lite/everest-counter-lite.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:34:\"w.org/plugins/everest-counter-lite\";s:4:\"slug\";s:20:\"everest-counter-lite\";s:6:\"plugin\";s:45:\"everest-counter-lite/everest-counter-lite.php\";s:11:\"new_version\";s:5:\"2.0.9\";s:3:\"url\";s:51:\"https://wordpress.org/plugins/everest-counter-lite/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/plugin/everest-counter-lite.2.0.9.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:73:\"https://ps.w.org/everest-counter-lite/assets/icon-128x128.png?rev=1712701\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:75:\"https://ps.w.org/everest-counter-lite/assets/banner-772x250.jpg?rev=1712701\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.8\";}s:34:\"feeds-for-youtube/youtube-feed.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:31:\"w.org/plugins/feeds-for-youtube\";s:4:\"slug\";s:17:\"feeds-for-youtube\";s:6:\"plugin\";s:34:\"feeds-for-youtube/youtube-feed.php\";s:11:\"new_version\";s:5:\"1.4.5\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/feeds-for-youtube/\";s:7:\"package\";s:66:\"https://downloads.wordpress.org/plugin/feeds-for-youtube.1.4.5.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/feeds-for-youtube/assets/icon-256x256.png?rev=2700809\";s:2:\"1x\";s:70:\"https://ps.w.org/feeds-for-youtube/assets/icon-128x128.png?rev=2700809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/feeds-for-youtube/assets/banner-1544x500.png?rev=2680369\";s:2:\"1x\";s:72:\"https://ps.w.org/feeds-for-youtube/assets/banner-772x250.png?rev=2680369\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.4\";}s:52:\"fuse-social-floating-sidebar/fuse_social_sidebar.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:42:\"w.org/plugins/fuse-social-floating-sidebar\";s:4:\"slug\";s:28:\"fuse-social-floating-sidebar\";s:6:\"plugin\";s:52:\"fuse-social-floating-sidebar/fuse_social_sidebar.php\";s:11:\"new_version\";s:5:\"5.4.3\";s:3:\"url\";s:59:\"https://wordpress.org/plugins/fuse-social-floating-sidebar/\";s:7:\"package\";s:77:\"https://downloads.wordpress.org/plugin/fuse-social-floating-sidebar.5.4.3.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:81:\"https://ps.w.org/fuse-social-floating-sidebar/assets/icon-128x128.png?rev=1154121\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:84:\"https://ps.w.org/fuse-social-floating-sidebar/assets/banner-1544x500.png?rev=2557504\";s:2:\"1x\";s:83:\"https://ps.w.org/fuse-social-floating-sidebar/assets/banner-772x250.png?rev=2557504\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.0\";}s:9:\"hello.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.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:41:\"sassy-social-share/sassy-social-share.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:32:\"w.org/plugins/sassy-social-share\";s:4:\"slug\";s:18:\"sassy-social-share\";s:6:\"plugin\";s:41:\"sassy-social-share/sassy-social-share.php\";s:11:\"new_version\";s:6:\"3.3.41\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/sassy-social-share/\";s:7:\"package\";s:68:\"https://downloads.wordpress.org/plugin/sassy-social-share.3.3.41.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:71:\"https://ps.w.org/sassy-social-share/assets/icon-128x128.png?rev=1300723\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:73:\"https://ps.w.org/sassy-social-share/assets/banner-772x250.png?rev=2489986\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"2.5.0\";}s:63:\"social-icons-widget-by-wpzoom/social-icons-widget-by-wpzoom.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:43:\"w.org/plugins/social-icons-widget-by-wpzoom\";s:4:\"slug\";s:29:\"social-icons-widget-by-wpzoom\";s:6:\"plugin\";s:63:\"social-icons-widget-by-wpzoom/social-icons-widget-by-wpzoom.php\";s:11:\"new_version\";s:5:\"4.2.5\";s:3:\"url\";s:60:\"https://wordpress.org/plugins/social-icons-widget-by-wpzoom/\";s:7:\"package\";s:78:\"https://downloads.wordpress.org/plugin/social-icons-widget-by-wpzoom.4.2.5.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:82:\"https://ps.w.org/social-icons-widget-by-wpzoom/assets/icon-256x256.png?rev=2679074\";s:2:\"1x\";s:82:\"https://ps.w.org/social-icons-widget-by-wpzoom/assets/icon-128x128.png?rev=2679074\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:85:\"https://ps.w.org/social-icons-widget-by-wpzoom/assets/banner-1544x500.png?rev=2679074\";s:2:\"1x\";s:84:\"https://ps.w.org/social-icons-widget-by-wpzoom/assets/banner-772x250.png?rev=2679074\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.2\";}s:37:\"user-role-editor/user-role-editor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:30:\"w.org/plugins/user-role-editor\";s:4:\"slug\";s:16:\"user-role-editor\";s:6:\"plugin\";s:37:\"user-role-editor/user-role-editor.php\";s:11:\"new_version\";s:4:\"4.62\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/user-role-editor/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/user-role-editor.4.62.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/user-role-editor/assets/icon-256x256.jpg?rev=1020390\";s:2:\"1x\";s:69:\"https://ps.w.org/user-role-editor/assets/icon-128x128.jpg?rev=1020390\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:71:\"https://ps.w.org/user-role-editor/assets/banner-772x250.png?rev=1263116\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.4\";}}}','no'),(2694,'user_role_editor','a:8:{s:11:\"ure_version\";s:4:\"4.62\";s:15:\"show_admin_role\";i:0;s:17:\"ure_caps_readable\";i:0;s:24:\"ure_show_deprecated_caps\";i:0;s:23:\"ure_confirm_role_update\";s:1:\"1\";s:14:\"edit_user_caps\";s:1:\"1\";s:18:\"caps_columns_quant\";i:1;s:19:\"other_default_roles\";a:0:{}}','yes'),(2695,'wp_backup_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:73:{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:27:\"manage_youtube_feed_options\";b:1;s:15:\"edit_sby_videos\";b:1;s:15:\"read_sby_videos\";b:1;s:17:\"delete_sby_videos\";b:1;s:22:\"edit_others_sby_videos\";b:1;s:18:\"publish_sby_videos\";b:1;s:23:\"read_private_sby_videos\";b:1;s:25:\"delete_private_sby_videos\";b:1;s:27:\"delete_published_sby_videos\";b:1;s:24:\"delete_others_sby_videos\";b:1;s:23:\"edit_private_sby_videos\";b:1;s:25:\"edit_published_sby_videos\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:45:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:15:\"edit_sby_videos\";b:1;s:15:\"read_sby_videos\";b:1;s:17:\"delete_sby_videos\";b:1;s:22:\"edit_others_sby_videos\";b:1;s:18:\"publish_sby_videos\";b:1;s:23:\"read_private_sby_videos\";b:1;s:25:\"delete_private_sby_videos\";b:1;s:27:\"delete_published_sby_videos\";b:1;s:24:\"delete_others_sby_videos\";b:1;s:23:\"edit_private_sby_videos\";b:1;s:25:\"edit_published_sby_videos\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:16:{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:15:\"edit_sby_videos\";b:1;s:15:\"read_sby_videos\";b:1;s:17:\"delete_sby_videos\";b:1;s:18:\"publish_sby_videos\";b:1;s:27:\"delete_published_sby_videos\";b:1;s:25:\"edit_published_sby_videos\";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;}}}','no'),(2696,'ure_tasks_queue','a:0:{}','yes'),(2701,'ure_role_additional_options_values','a:2:{s:6:\"editor\";a:0:{}s:10:\"subscriber\";a:0:{}}','yes'),(2729,'_site_transient_timeout_theme_roots','1652963750','no'),(2730,'_site_transient_theme_roots','a:5:{s:8:\"flatsome\";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'),(2736,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1652962154;s:7:\"checked\";a:5:{s:8:\"flatsome\";s:6:\"3.15.3\";s:14:\"twentynineteen\";s:3:\"2.2\";s:12:\"twentytwenty\";s:3:\"1.9\";s:15:\"twentytwentyone\";s:3:\"1.5\";s:15:\"twentytwentytwo\";s:3:\"1.1\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:5:{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:8:\"flatsome\";a:4:{s:5:\"theme\";s:8:\"flatsome\";s:11:\"new_version\";s:6:\"3.15.3\";s:3:\"url\";s:88:\"http://demoweblinks.in/ping/wp-admin/admin.php?page=flatsome-version-info&version=3.15.3\";s:7:\"package\";s:110:\"http://demoweblinks.in/ping/wp-admin/admin.php?page=flatsome-panel&flatsome_version=3.15.3&flatsome_download=1\";}}s:12:\"translations\";a:0:{}}','no'),(2737,'_transient_timeout_global_styles_svg_filters_flatsome','1652962984','no'),(2738,'_transient_global_styles_svg_filters_flatsome','<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'),(2739,'_transient_timeout_global_styles_flatsome','1652962984','no'),(2740,'_transient_global_styles_flatsome','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'),(2742,'_site_transient_timeout_ure_caps_readable','1652966948','no'),(2743,'_site_transient_ure_caps_readable','0','no'),(2744,'_site_transient_timeout_ure_show_deprecated_caps','1652966948','no'),(2745,'_site_transient_ure_show_deprecated_caps','0','no');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `wp_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
INSERT INTO `wp_postmeta` VALUES (1,2,'_wp_page_template','default'),(2,3,'_wp_page_template','default'),(5,6,'_edit_lock','1652943931:2'),(6,6,'_edit_last','1'),(7,6,'_footer','normal'),(8,6,'_wp_page_template','page-blank.php'),(9,6,'_thumbnail_id',''),(11,15,'_wp_attached_file','2022/01/next-icon-btn.png'),(12,15,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:110;s:6:\"height\";i:110;s:4:\"file\";s:25:\"2022/01/next-icon-btn.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:{}}}'),(35,26,'_wp_attached_file','2022/01/Untitled-1.png'),(36,26,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:545;s:6:\"height\";i:282;s:4:\"file\";s:22:\"2022/01/Untitled-1.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"Untitled-1-300x155.png\";s:5:\"width\";i:300;s:6:\"height\";i:155;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Untitled-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:{}}}'),(37,27,'_wp_attached_file','2022/01/Untitled-2.png'),(38,27,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:480;s:4:\"file\";s:22:\"2022/01/Untitled-2.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"Untitled-2-300x240.png\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Untitled-2-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:{}}}'),(54,45,'_edit_last','1'),(55,45,'_edit_lock','1646027230:1'),(56,45,'_thumbnail_id',''),(60,51,'_wp_attached_file','2022/01/Ping-Logo-02.png'),(61,51,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:968;s:6:\"height\";i:483;s:4:\"file\";s:24:\"2022/01/Ping-Logo-02.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Ping-Logo-02-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Ping-Logo-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:24:\"Ping-Logo-02-768x383.png\";s:5:\"width\";i:768;s:6:\"height\";i:383;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:{}}}'),(66,53,'_wp_attached_file','2022/01/cropped-Ping-Logo-02.png'),(67,53,'_wp_attachment_context','site-icon'),(68,53,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:32:\"2022/01/cropped-Ping-Logo-02.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"cropped-Ping-Logo-02-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:32:\"cropped-Ping-Logo-02-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-270\";a:4:{s:4:\"file\";s:32:\"cropped-Ping-Logo-02-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:32:\"cropped-Ping-Logo-02-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:32:\"cropped-Ping-Logo-02-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:30:\"cropped-Ping-Logo-02-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:{}}}'),(77,58,'_form','<label> Your name\n    [text* your-name] </label>\n\n<label> Your email\n    [email* your-email] </label>\n\n<label> Subject\n    [text* your-subject] </label>\n\n<label> Your message (optional)\n    [textarea your-message] </label>\n\n[submit \"Submit\"]'),(78,58,'_mail','a:8:{s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:41:\"[_site_title] <wordpress@demoweblinks.in>\";s:4:\"body\";s:163:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:9:\"recipient\";s:19:\"[_site_admin_email]\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(79,58,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:41:\"[_site_title] <wordpress@demoweblinks.in>\";s:4:\"body\";s:105:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:29:\"Reply-To: [_site_admin_email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(80,58,'_messages','a:12:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";}'),(81,58,'_additional_settings',''),(82,58,'_locale','en_US'),(83,59,'_form','<div class=\"row\">\n<div class=\"col small-6 large-6\">\n[text* name placeholder \"Name\"]\n</div>\n<div class=\"col small-6 large-6\">\n[countrytext country class:con placeholder \"country\"]\n</div>\n</div>\n\n<div class=\"row\">\n<div class=\"col small-6 large-6\">\n[text* youtube class:youtubes placeholder \"Youtube\"]\n</div>\n<div class=\"col small-6 large-6\">\n\n\n[text channelname placeholder \"Channel Name\"]\n</div>\n</div>\n\n<div class=\"row\">\n<div class=\"col small-6 large-6\">\n[select category \"cat1\" \"cat2\" \"cat3\"]\n</div>\n<div class=\"col small-6 large-6\">\n\n\n[email* email placeholder \"Email\"]\n</div>\n</div>\n\n<div class=\"row row-small align-middle\" >\n<div class=\"col medium-12 small-12 large-12 newsletter-btn\">\n[submit class:button class:secondary class:lowercase class:home-buttons  \"Submit\"]\n</div>\n\n</div>'),(84,59,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:41:\"[_site_title] <wordpress@demoweblinks.in>\";s:9:\"recipient\";s:19:\"[_site_admin_email]\";s:4:\"body\";s:163:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s: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;}'),(85,59,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:41:\"[_site_title] <wordpress@demoweblinks.in>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:105:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s: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;}'),(86,59,'_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.\";}'),(87,59,'_additional_settings',''),(88,59,'_locale','en_US'),(95,67,'_wp_attached_file','2022/01/cheerful-students-jumping-excitement-scaled.jpg'),(96,67,'_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:5:{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:9:\"1536x1536\";a:4:{s:4:\"file\";s:50:\"cheerful-students-jumping-excitement-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:\"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\";}'),(97,68,'_wp_attached_file','2022/01/download-2.jpg'),(98,68,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:225;s:4:\"file\";s:22:\"2022/01/download-2.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"download-2-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:{}}}'),(99,69,'_wp_attached_file','2022/01/How_Do_I_Correctly_Format_a_Copyright.jpg'),(100,69,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:375;s:4:\"file\";s:49:\"2022/01/How_Do_I_Correctly_Format_a_Copyright.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"How_Do_I_Correctly_Format_a_Copyright-300x156.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"How_Do_I_Correctly_Format_a_Copyright-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:{}}}'),(101,70,'_wp_attached_file','2022/01/images.jpg'),(102,70,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:275;s:6:\"height\";i:183;s:4:\"file\";s:18:\"2022/01/images.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"images-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:{}}}'),(103,71,'_wp_attached_file','2022/01/unnamed.png'),(104,71,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:250;s:4:\"file\";s:19:\"2022/01/unnamed.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"unnamed-300x146.png\";s:5:\"width\";i:300;s:6:\"height\";i:146;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"unnamed-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:{}}}'),(105,72,'_wp_attached_file','2022/01/yt_1200.png'),(106,72,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:19:\"2022/01/yt_1200.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"yt_1200-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:21:\"yt_1200-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:19:\"yt_1200-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:\"yt_1200-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;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:{}}}'),(107,74,'_wp_attached_file','2022/01/tm9.jpg'),(108,74,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:15:\"2022/01/tm9.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"tm9-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:15:\"tm9-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:\"1\";s:8:\"keywords\";a:0:{}}}'),(109,75,'_wp_attached_file','2022/01/images-2.jpg'),(110,75,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:225;s:4:\"file\";s:20:\"2022/01/images-2.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"images-2-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:{}}}'),(111,76,'_wp_attached_file','2022/01/images-1.jpg'),(112,76,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:225;s:4:\"file\";s:20:\"2022/01/images-1.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"images-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:{}}}'),(113,77,'_wp_attached_file','2022/01/team-member-04.jpg'),(114,77,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:460;s:4:\"file\";s:26:\"2022/01/team-member-04.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"team-member-04-261x300.jpg\";s:5:\"width\";i:261;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"team-member-04-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:{}}}'),(115,80,'_menu_item_type','post_type'),(116,80,'_menu_item_menu_item_parent','0'),(117,80,'_menu_item_object_id','6'),(118,80,'_menu_item_object','page'),(119,80,'_menu_item_target',''),(120,80,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(121,80,'_menu_item_xfn',''),(122,80,'_menu_item_url',''),(124,81,'_menu_item_type','custom'),(125,81,'_menu_item_menu_item_parent','0'),(126,81,'_menu_item_object_id','81'),(127,81,'_menu_item_object','custom'),(128,81,'_menu_item_target',''),(129,81,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(130,81,'_menu_item_xfn',''),(131,81,'_menu_item_url','http://demoweblinks.in/ping/#aboutus'),(133,82,'_menu_item_type','custom'),(134,82,'_menu_item_menu_item_parent','0'),(135,82,'_menu_item_object_id','82'),(136,82,'_menu_item_object','custom'),(137,82,'_menu_item_target',''),(138,82,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(139,82,'_menu_item_xfn',''),(140,82,'_menu_item_url','http://demoweblinks.in/ping/#service-section'),(142,83,'_menu_item_type','custom'),(143,83,'_menu_item_menu_item_parent','0'),(144,83,'_menu_item_object_id','83'),(145,83,'_menu_item_object','custom'),(146,83,'_menu_item_target',''),(147,83,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(148,83,'_menu_item_xfn',''),(149,83,'_menu_item_url','http://demoweblinks.in/ping/#network'),(178,80,'_menu_item_design','default'),(179,80,'_menu_item_width',''),(180,80,'_menu_item_height',''),(181,80,'_menu_item_block',''),(182,80,'_menu_item_behavior','hover'),(183,80,'_menu_item_icon-type','media'),(184,80,'_menu_item_icon-id',''),(185,80,'_menu_item_icon-width',''),(186,80,'_menu_item_icon-height',''),(187,80,'_menu_item_icon-html',''),(188,81,'_menu_item_design','default'),(189,81,'_menu_item_width',''),(190,81,'_menu_item_height',''),(191,81,'_menu_item_block',''),(192,81,'_menu_item_behavior','hover'),(193,81,'_menu_item_icon-type','media'),(194,81,'_menu_item_icon-id',''),(195,81,'_menu_item_icon-width',''),(196,81,'_menu_item_icon-height',''),(197,81,'_menu_item_icon-html',''),(198,82,'_menu_item_design','default'),(199,82,'_menu_item_width',''),(200,82,'_menu_item_height',''),(201,82,'_menu_item_block',''),(202,82,'_menu_item_behavior','hover'),(203,82,'_menu_item_icon-type','media'),(204,82,'_menu_item_icon-id',''),(205,82,'_menu_item_icon-width',''),(206,82,'_menu_item_icon-height',''),(207,82,'_menu_item_icon-html',''),(208,83,'_menu_item_design','default'),(209,83,'_menu_item_width',''),(210,83,'_menu_item_height',''),(211,83,'_menu_item_block',''),(212,83,'_menu_item_behavior','hover'),(213,83,'_menu_item_icon-type','media'),(214,83,'_menu_item_icon-id',''),(215,83,'_menu_item_icon-width',''),(216,83,'_menu_item_icon-height',''),(217,83,'_menu_item_icon-html',''),(310,135,'_wp_attached_file','2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png'),(311,135,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:920;s:6:\"height\";i:711;s:4:\"file\";s:103:\"2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:103:\"png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane-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:103:\"png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane-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:103:\"png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane-768x594.png\";s:5:\"width\";i:768;s:6:\"height\";i:594;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:{}}}'),(378,59,'_config_errors','a:2:{s:9:\"form.body\";a:1:{i:0;a:2:{s:4:\"code\";i:107;s:4:\"args\";a:3:{s:7:\"message\";s:55:\"Unavailable names (%names%) are used for form controls.\";s:6:\"params\";a:1:{s:5:\"names\";s:6:\"\"name\"\";}s:4:\"link\";s:63:\"https://contactform7.com/configuration-errors/unavailable-names\";}}}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\";}}}}'),(384,207,'_wp_attached_file','2022/02/next-icon-btn-1-1.png'),(385,207,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:407;s:6:\"height\";i:407;s:4:\"file\";s:29:\"2022/02/next-icon-btn-1-1.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"next-icon-btn-1-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"next-icon-btn-1-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:{}}}'),(406,80,'_wp_old_date','2022-01-31'),(407,81,'_wp_old_date','2022-01-31'),(408,82,'_wp_old_date','2022-01-31'),(409,83,'_wp_old_date','2022-01-31'),(445,259,'_wp_attached_file','2022/02/Ping-Banner-02.jpg'),(446,80,'_wp_old_date','2022-02-17'),(447,81,'_wp_old_date','2022-02-17'),(448,82,'_wp_old_date','2022-02-17'),(449,83,'_wp_old_date','2022-02-17'),(462,286,'_edit_last','1'),(463,286,'manisha_demo_data','s:369:\"a:3:{i:0;a:3:{s:12:\"counter_icon\";s:9:\"fa-laptop\";s:13:\"counter_value\";s:3:\"202\";s:13:\"counter_title\";s:19:\"Aggregated Channels\";}i:1;a:3:{s:12:\"counter_icon\";s:9:\"fa-laptop\";s:13:\"counter_value\";s:2:\"16\";s:13:\"counter_title\";s:22:\"Aggregated Subscribers\";}i:2;a:3:{s:12:\"counter_icon\";s:9:\"fa-laptop\";s:13:\"counter_value\";s:4:\"4243\";s:13:\"counter_title\";s:5:\"Title\";}}\";'),(464,286,'manisha_demo_count','3'),(465,286,'Counter_Meta_Settings','s:331:\"a:11:{s:8:\"icon_clr\";s:7:\"#000000\";s:15:\"count_title_clr\";s:7:\"#000000\";s:13:\"count_num_clr\";s:7:\"#000000\";s:9:\"icon_size\";s:2:\"20\";s:14:\"count_num_size\";s:2:\"18\";s:10:\"title_size\";s:2:\"18\";s:9:\"cn_weight\";s:3:\"400\";s:11:\"font_family\";s:9:\"Open Sans\";s:12:\"display_icon\";s:3:\"yes\";s:9:\"cn_layout\";s:1:\"4\";s:10:\"custom_css\";s:0:\"\";}\";'),(466,286,'_edit_lock','1649765483:1'),(469,288,'ec_counter_data','a:2:{s:4:\"item\";a:3:{s:10:\"Mc7xzGqWEM\";a:6:{s:14:\"icon-selection\";s:4:\"icon\";s:4:\"icon\";a:6:{s:4:\"name\";s:18:\"fa|fa-youtube-play\";s:10:\"font-color\";s:0:\"\";s:9:\"font-size\";s:2:\"56\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:6:\"border\";a:4:{s:5:\"width\";s:0:\"\";s:5:\"color\";s:0:\"\";s:6:\"radius\";s:0:\"\";s:11:\"line-height\";s:0:\"\";}}s:5:\"count\";a:5:{s:7:\"content\";s:3:\"202\";s:11:\"font-family\";s:4:\"Lato\";s:9:\"font-size\";s:2:\"30\";s:10:\"font-color\";s:0:\"\";s:9:\"animation\";a:3:{s:6:\"enable\";s:2:\"on\";s:5:\"delay\";s:0:\"\";s:8:\"duration\";s:0:\"\";}}s:5:\"title\";a:4:{s:7:\"content\";s:19:\"Aggregated Channels\";s:11:\"font-family\";s:4:\"Lato\";s:9:\"font-size\";s:2:\"24\";s:10:\"font-color\";s:0:\"\";}s:8:\"subtitle\";a:4:{s:7:\"content\";s:8:\"Channels\";s:11:\"font-family\";s:4:\"Lato\";s:9:\"font-size\";s:2:\"18\";s:10:\"font-color\";s:7:\"#0c0c0c\";}s:6:\"button\";a:6:{s:5:\"label\";s:0:\"\";s:3:\"url\";s:0:\"\";s:6:\"target\";s:4:\"None\";s:11:\"font-family\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:10:\"font-color\";s:0:\"\";}}s:10:\"66peVusxY5\";a:6:{s:14:\"icon-selection\";s:4:\"icon\";s:4:\"icon\";a:6:{s:4:\"name\";s:12:\"fa|fa-bell-o\";s:10:\"font-color\";s:0:\"\";s:9:\"font-size\";s:2:\"56\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:6:\"border\";a:4:{s:5:\"width\";s:0:\"\";s:5:\"color\";s:0:\"\";s:6:\"radius\";s:0:\"\";s:11:\"line-height\";s:0:\"\";}}s:5:\"count\";a:5:{s:7:\"content\";s:2:\"16\";s:11:\"font-family\";s:4:\"Lato\";s:9:\"font-size\";s:2:\"30\";s:10:\"font-color\";s:0:\"\";s:9:\"animation\";a:3:{s:6:\"enable\";s:2:\"on\";s:5:\"delay\";s:0:\"\";s:8:\"duration\";s:0:\"\";}}s:5:\"title\";a:4:{s:7:\"content\";s:22:\"Aggregated Subscribers\";s:11:\"font-family\";s:4:\"Lato\";s:9:\"font-size\";s:2:\"24\";s:10:\"font-color\";s:0:\"\";}s:8:\"subtitle\";a:4:{s:7:\"content\";s:8:\"Millions\";s:11:\"font-family\";s:4:\"Lato\";s:9:\"font-size\";s:2:\"18\";s:10:\"font-color\";s:7:\"#0c0c0c\";}s:6:\"button\";a:6:{s:5:\"label\";s:0:\"\";s:3:\"url\";s:0:\"\";s:6:\"target\";s:4:\"None\";s:11:\"font-family\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:10:\"font-color\";s:0:\"\";}}s:10:\"HhhZ5gB9jA\";a:6:{s:14:\"icon-selection\";s:4:\"icon\";s:4:\"icon\";a:6:{s:4:\"name\";s:30:\"dashicons|dashicons-visibility\";s:10:\"font-color\";s:0:\"\";s:9:\"font-size\";s:2:\"56\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:6:\"border\";a:4:{s:5:\"width\";s:0:\"\";s:5:\"color\";s:0:\"\";s:6:\"radius\";s:0:\"\";s:11:\"line-height\";s:0:\"\";}}s:5:\"count\";a:5:{s:7:\"content\";s:3:\"4.5\";s:11:\"font-family\";s:0:\"\";s:9:\"font-size\";s:2:\"30\";s:10:\"font-color\";s:0:\"\";s:9:\"animation\";a:3:{s:6:\"enable\";s:2:\"on\";s:5:\"delay\";s:0:\"\";s:8:\"duration\";s:0:\"\";}}s:5:\"title\";a:4:{s:7:\"content\";s:16:\"Aggregated Views\";s:11:\"font-family\";s:4:\"Lato\";s:9:\"font-size\";s:2:\"24\";s:10:\"font-color\";s:0:\"\";}s:8:\"subtitle\";a:4:{s:7:\"content\";s:7:\"Billion\";s:11:\"font-family\";s:4:\"Lato\";s:9:\"font-size\";s:2:\"18\";s:10:\"font-color\";s:7:\"#0c0c0c\";}s:6:\"button\";a:6:{s:5:\"label\";s:0:\"\";s:3:\"url\";s:0:\"\";s:6:\"target\";s:4:\"None\";s:11:\"font-family\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:10:\"font-color\";s:0:\"\";}}}s:19:\"ec_display_settings\";a:3:{s:18:\"template-selection\";s:9:\"template1\";s:7:\"columns\";a:3:{s:7:\"desktop\";s:1:\"3\";s:6:\"tablet\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:10:\"background\";a:4:{s:6:\"option\";s:0:\"\";s:5:\"image\";a:1:{s:3:\"url\";s:0:\"\";}s:16:\"background-color\";a:1:{s:5:\"color\";s:7:\"#8196f8\";}s:7:\"overlay\";a:1:{s:5:\"color\";s:0:\"\";}}}}'),(470,288,'_edit_last','1'),(471,288,'_edit_lock','1651042230:1'),(472,6,'ec_counter_data','a:0:{}'),(475,32,'ec_counter_data','a:0:{}'),(487,312,'_wp_attached_file','2022/04/unnamed-1.jpg'),(488,312,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:88;s:6:\"height\";i:88;s:4:\"file\";s:21:\"2022/04/unnamed-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:{}}}'),(489,313,'_wp_attached_file','2022/04/unnamed-2.jpg'),(490,313,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:88;s:6:\"height\";i:88;s:4:\"file\";s:21:\"2022/04/unnamed-2.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:{}}}'),(491,315,'_wp_attached_file','2022/04/unnamed-3.jpg'),(492,315,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:88;s:6:\"height\";i:88;s:4:\"file\";s:21:\"2022/04/unnamed-3.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:{}}}'),(493,317,'_wp_attached_file','2022/04/unnamed-4.jpg'),(494,317,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:88;s:6:\"height\";i:88;s:4:\"file\";s:21:\"2022/04/unnamed-4.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:{}}}'),(495,319,'_wp_attached_file','2022/04/unnamed-5.jpg'),(496,319,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:88;s:6:\"height\";i:88;s:4:\"file\";s:21:\"2022/04/unnamed-5.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:{}}}'),(497,320,'_wp_attached_file','2022/04/unnamed-6.jpg'),(498,320,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:88;s:6:\"height\";i:88;s:4:\"file\";s:21:\"2022/04/unnamed-6.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:{}}}'),(499,322,'_wp_attached_file','2022/04/channels4_profile-1.jpg'),(500,322,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:88;s:6:\"height\";i:88;s:4:\"file\";s:31:\"2022/04/channels4_profile-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:{}}}'),(501,324,'_wp_attached_file','2022/04/unnamed-7.jpg'),(502,324,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:88;s:6:\"height\";i:88;s:4:\"file\";s:21:\"2022/04/unnamed-7.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:{}}}'),(503,326,'_wp_attached_file','2022/04/channels4_profile-2.jpg'),(504,326,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:88;s:6:\"height\";i:88;s:4:\"file\";s:31:\"2022/04/channels4_profile-2.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:{}}}'),(505,327,'_wp_attached_file','2022/04/channels4_profile.jpg'),(506,327,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:88;s:6:\"height\";i:88;s:4:\"file\";s:29:\"2022/04/channels4_profile.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:{}}}'),(507,80,'_wp_old_date','2022-02-28'),(508,80,'ec_counter_data','a:0:{}'),(509,81,'_wp_old_date','2022-02-28'),(510,81,'ec_counter_data','a:0:{}'),(511,82,'_wp_old_date','2022-02-28'),(512,82,'ec_counter_data','a:0:{}'),(513,83,'_wp_old_date','2022-02-28'),(514,83,'ec_counter_data','a:0:{}'),(560,380,'_wp_trash_meta_status','publish'),(561,380,'_wp_trash_meta_time','1650428963'),(562,380,'ec_counter_data','a:0:{}'),(563,385,'ec_counter_data','a:0:{}'),(564,385,'_edit_lock','1650429767:1'),(565,385,'_wp_trash_meta_status','publish'),(566,385,'_wp_trash_meta_time','1650429797'),(567,387,'ec_counter_data','a:0:{}'),(568,387,'_edit_lock','1650429980:1'),(569,387,'_wp_trash_meta_status','publish'),(570,387,'_wp_trash_meta_time','1650429989'),(571,389,'_wp_trash_meta_status','publish'),(572,389,'_wp_trash_meta_time','1650435740'),(573,389,'ec_counter_data','a:0:{}'),(574,395,'ec_counter_data','a:0:{}'),(575,395,'_edit_lock','1650435927:1'),(576,395,'_wp_trash_meta_status','publish'),(577,395,'_wp_trash_meta_time','1650435955'),(578,397,'_wp_trash_meta_status','publish'),(579,397,'_wp_trash_meta_time','1650435988'),(580,397,'ec_counter_data','a:0:{}'),(581,406,'_wp_trash_meta_status','publish'),(582,406,'_wp_trash_meta_time','1650437148'),(583,406,'ec_counter_data','a:0:{}'),(584,408,'ec_counter_data','a:0:{}'),(585,408,'_edit_lock','1650437245:1'),(586,408,'_wp_trash_meta_status','publish'),(587,408,'_wp_trash_meta_time','1650437260'),(588,410,'_wp_trash_meta_status','publish'),(589,410,'_wp_trash_meta_time','1650437375'),(590,410,'ec_counter_data','a:0:{}'),(592,419,'_wp_trash_meta_status','publish'),(593,419,'_wp_trash_meta_time','1650440274'),(594,419,'ec_counter_data','a:0:{}'),(595,421,'_wp_trash_meta_status','publish'),(596,421,'_wp_trash_meta_time','1650440324'),(597,421,'ec_counter_data','a:0:{}'),(598,423,'_wp_trash_meta_status','publish'),(599,423,'_wp_trash_meta_time','1650440390'),(600,423,'ec_counter_data','a:0:{}'),(601,426,'_wp_trash_meta_status','publish'),(602,426,'_wp_trash_meta_time','1650440456'),(603,426,'ec_counter_data','a:0:{}'),(606,447,'ec_counter_data','a:0:{}'),(607,447,'_edit_lock','1650451045:1'),(608,447,'_wp_trash_meta_status','publish'),(609,447,'_wp_trash_meta_time','1650451046'),(610,451,'ec_counter_data','a:0:{}'),(611,451,'_edit_lock','1650452501:1'),(612,451,'_wp_trash_meta_status','publish'),(613,451,'_wp_trash_meta_time','1650452535'),(614,453,'_wp_trash_meta_status','publish'),(615,453,'_wp_trash_meta_time','1650452614'),(616,453,'ec_counter_data','a:0:{}'),(617,455,'ec_counter_data','a:0:{}'),(618,455,'_edit_lock','1650452848:1'),(619,455,'_wp_trash_meta_status','publish'),(620,455,'_wp_trash_meta_time','1650452862'),(621,458,'ec_counter_data','a:0:{}'),(622,458,'_edit_lock','1650452987:1'),(623,458,'_wp_trash_meta_status','publish'),(624,458,'_wp_trash_meta_time','1650453000'),(625,460,'_wp_trash_meta_status','publish'),(626,460,'_wp_trash_meta_time','1650453033'),(627,460,'ec_counter_data','a:0:{}'),(628,462,'_wp_trash_meta_status','publish'),(629,462,'_wp_trash_meta_time','1650453090'),(630,462,'ec_counter_data','a:0:{}'),(631,464,'ec_counter_data','a:0:{}'),(632,464,'_edit_lock','1650453241:1'),(633,464,'_wp_trash_meta_status','publish'),(634,464,'_wp_trash_meta_time','1650453271'),(635,466,'_wp_trash_meta_status','publish'),(636,466,'_wp_trash_meta_time','1650453307'),(637,466,'ec_counter_data','a:0:{}'),(638,469,'_wp_trash_meta_status','publish'),(639,469,'_wp_trash_meta_time','1650453468'),(640,469,'ec_counter_data','a:0:{}'),(641,471,'_wp_trash_meta_status','publish'),(642,471,'_wp_trash_meta_time','1650453495'),(643,471,'ec_counter_data','a:0:{}'),(644,473,'ec_counter_data','a:0:{}'),(645,473,'_edit_lock','1650453739:1'),(646,473,'_wp_trash_meta_status','publish'),(647,473,'_wp_trash_meta_time','1650453748'),(648,475,'_wp_trash_meta_status','publish'),(649,475,'_wp_trash_meta_time','1650453950'),(650,475,'ec_counter_data','a:0:{}'),(651,477,'_wp_trash_meta_status','publish'),(652,477,'_wp_trash_meta_time','1650453975'),(653,477,'ec_counter_data','a:0:{}'),(654,482,'_wp_trash_meta_status','publish'),(655,482,'_wp_trash_meta_time','1650600374'),(656,482,'ec_counter_data','a:0:{}'),(657,488,'_wp_attached_file','2022/04/i.png'),(658,488,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:246;s:6:\"height\";i:261;s:4:\"file\";s:13:\"2022/04/i.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"i-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:{}}}'),(659,489,'_wp_attached_file','2022/04/h.png'),(660,489,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:279;s:6:\"height\";i:279;s:4:\"file\";s:13:\"2022/04/h.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"h-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:{}}}'),(661,490,'_wp_attached_file','2022/04/g.png'),(662,490,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:237;s:6:\"height\";i:239;s:4:\"file\";s:13:\"2022/04/g.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"g-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:{}}}'),(663,492,'ec_counter_data','a:0:{}'),(664,492,'_edit_lock','1650947740:1'),(665,492,'_wp_trash_meta_status','publish'),(666,492,'_wp_trash_meta_time','1650947751'),(667,494,'_wp_trash_meta_status','publish'),(668,494,'_wp_trash_meta_time','1650947793'),(669,494,'ec_counter_data','a:0:{}'),(670,496,'_wp_trash_meta_status','publish'),(671,496,'_wp_trash_meta_time','1650947879'),(672,496,'ec_counter_data','a:0:{}'),(673,498,'_wp_trash_meta_status','publish'),(674,498,'_wp_trash_meta_time','1650947960'),(675,498,'ec_counter_data','a:0:{}'),(676,500,'_wp_attached_file','2022/04/f.png'),(677,500,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:287;s:6:\"height\";i:288;s:4:\"file\";s:13:\"2022/04/f.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"f-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:{}}}'),(678,501,'_wp_attached_file','2022/04/e.png'),(679,501,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:253;s:6:\"height\";i:253;s:4:\"file\";s:13:\"2022/04/e.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"e-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:{}}}'),(680,502,'_wp_attached_file','2022/04/d.png'),(681,502,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:234;s:6:\"height\";i:229;s:4:\"file\";s:13:\"2022/04/d.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"d-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:{}}}'),(682,504,'_wp_attached_file','2022/04/c.png'),(683,504,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:281;s:6:\"height\";i:240;s:4:\"file\";s:13:\"2022/04/c.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"c-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:{}}}'),(684,505,'_wp_attached_file','2022/04/b.png'),(685,505,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:242;s:6:\"height\";i:241;s:4:\"file\";s:13:\"2022/04/b.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"b-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:{}}}'),(686,506,'_wp_attached_file','2022/04/a.png'),(687,506,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:224;s:6:\"height\";i:265;s:4:\"file\";s:13:\"2022/04/a.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"a-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:{}}}'),(688,509,'_wp_trash_meta_status','publish'),(689,509,'_wp_trash_meta_time','1650949237'),(690,509,'ec_counter_data','a:0:{}'),(691,513,'_wp_trash_meta_status','publish'),(692,513,'_wp_trash_meta_time','1650949501'),(693,513,'ec_counter_data','a:0:{}'),(694,515,'_wp_trash_meta_status','publish'),(695,515,'_wp_trash_meta_time','1650949558'),(696,515,'ec_counter_data','a:0:{}'),(697,519,'ec_counter_data','a:0:{}'),(698,519,'_edit_lock','1650951359:1'),(699,519,'_wp_trash_meta_status','publish'),(700,519,'_wp_trash_meta_time','1650951369'),(701,522,'ec_counter_data','a:0:{}'),(702,522,'_edit_lock','1651030907:1'),(703,522,'_wp_trash_meta_status','publish'),(704,522,'_wp_trash_meta_time','1651030914'),(705,524,'_wp_trash_meta_status','publish'),(706,524,'_wp_trash_meta_time','1651031149'),(707,524,'ec_counter_data','a:0:{}'),(708,526,'_wp_trash_meta_status','publish'),(709,526,'_wp_trash_meta_time','1651031393'),(710,526,'ec_counter_data','a:0:{}'),(711,528,'_wp_trash_meta_status','publish'),(712,528,'_wp_trash_meta_time','1651031435'),(713,528,'ec_counter_data','a:0:{}'),(714,530,'_wp_trash_meta_status','publish'),(715,530,'_wp_trash_meta_time','1651031519'),(716,530,'ec_counter_data','a:0:{}'),(717,532,'_wp_trash_meta_status','publish'),(718,532,'_wp_trash_meta_time','1651031849'),(719,532,'ec_counter_data','a:0:{}'),(720,534,'_wp_trash_meta_status','publish'),(721,534,'_wp_trash_meta_time','1651031882'),(722,534,'ec_counter_data','a:0:{}'),(723,536,'_wp_trash_meta_status','publish'),(724,536,'_wp_trash_meta_time','1651031926'),(725,536,'ec_counter_data','a:0:{}'),(726,538,'_wp_trash_meta_status','publish'),(727,538,'_wp_trash_meta_time','1651031946'),(728,538,'ec_counter_data','a:0:{}'),(729,540,'_wp_trash_meta_status','publish'),(730,540,'_wp_trash_meta_time','1651032002'),(731,540,'ec_counter_data','a:0:{}'),(732,542,'ec_counter_data','a:0:{}'),(733,542,'_edit_lock','1651032079:1'),(734,542,'_wp_trash_meta_status','publish'),(735,542,'_wp_trash_meta_time','1651032094'),(736,544,'ec_counter_data','a:0:{}'),(737,544,'_edit_lock','1651032444:1'),(738,544,'_wp_trash_meta_status','publish'),(739,544,'_wp_trash_meta_time','1651032454'),(740,546,'_wp_trash_meta_status','publish'),(741,546,'_wp_trash_meta_time','1651032494'),(742,546,'ec_counter_data','a:0:{}'),(743,548,'_wp_trash_meta_status','publish'),(744,548,'_wp_trash_meta_time','1651032508'),(745,548,'ec_counter_data','a:0:{}'),(746,550,'_wp_trash_meta_status','publish'),(747,550,'_wp_trash_meta_time','1651032615'),(748,550,'ec_counter_data','a:0:{}'),(749,552,'_wp_trash_meta_status','publish'),(750,552,'_wp_trash_meta_time','1651032619'),(751,552,'ec_counter_data','a:0:{}'),(752,554,'ec_counter_data','a:0:{}'),(753,554,'_edit_lock','1651041847:1'),(754,554,'_wp_trash_meta_status','publish'),(755,554,'_wp_trash_meta_time','1651041858'),(756,556,'_wp_trash_meta_status','publish'),(757,556,'_wp_trash_meta_time','1651041943'),(758,556,'ec_counter_data','a:0:{}'),(759,558,'_wp_trash_meta_status','publish'),(760,558,'_wp_trash_meta_time','1651042046'),(761,558,'ec_counter_data','a:0:{}'),(762,559,'_wp_trash_meta_status','publish'),(763,559,'_wp_trash_meta_time','1651042102'),(764,559,'ec_counter_data','a:0:{}'),(765,560,'_wp_trash_meta_status','publish'),(766,560,'_wp_trash_meta_time','1651042134'),(767,560,'ec_counter_data','a:0:{}'),(768,561,'_wp_trash_meta_status','publish'),(769,561,'_wp_trash_meta_time','1651042303'),(770,561,'ec_counter_data','a:0:{}'),(771,568,'_wp_trash_meta_status','publish'),(772,568,'_wp_trash_meta_time','1651043371'),(773,568,'ec_counter_data','a:0:{}'),(774,570,'ec_counter_data','a:0:{}'),(775,570,'_edit_lock','1651043582:1'),(776,570,'_wp_trash_meta_status','publish'),(777,570,'_wp_trash_meta_time','1651043586'),(778,573,'_wp_trash_meta_status','publish'),(779,573,'_wp_trash_meta_time','1651043799'),(780,573,'ec_counter_data','a:0:{}'),(781,80,'_wp_old_date','2022-04-14'),(782,81,'_wp_old_date','2022-04-14'),(783,82,'_wp_old_date','2022-04-14'),(784,83,'_wp_old_date','2022-04-14'),(785,578,'_wp_trash_meta_status','publish'),(786,578,'_wp_trash_meta_time','1651045055'),(787,578,'ec_counter_data','a:0:{}'),(788,581,'_wp_trash_meta_status','publish'),(789,581,'_wp_trash_meta_time','1651045296'),(790,581,'ec_counter_data','a:0:{}'),(791,583,'_wp_trash_meta_status','publish'),(792,583,'_wp_trash_meta_time','1651045340'),(793,583,'ec_counter_data','a:0:{}'),(794,585,'_wp_trash_meta_status','publish'),(795,585,'_wp_trash_meta_time','1651045377'),(796,585,'ec_counter_data','a:0:{}'),(797,587,'_wp_trash_meta_status','publish'),(798,587,'_wp_trash_meta_time','1651045407'),(799,587,'ec_counter_data','a:0:{}'),(800,599,'_wp_trash_meta_status','publish'),(801,599,'_wp_trash_meta_time','1651048738'),(802,599,'ec_counter_data','a:0:{}'),(803,601,'ec_counter_data','a:0:{}'),(804,601,'_edit_lock','1651048798:1'),(805,601,'_wp_trash_meta_status','publish'),(806,601,'_wp_trash_meta_time','1651048801'),(808,622,'_wp_trash_meta_status','publish'),(809,622,'_wp_trash_meta_time','1651742879'),(810,622,'ec_counter_data','a:0:{}'),(811,624,'_wp_trash_meta_status','publish'),(812,624,'_wp_trash_meta_time','1651743002'),(813,624,'ec_counter_data','a:0:{}'),(815,627,'ec_counter_data','a:0:{}'),(816,628,'ec_counter_data','a:0:{}'),(817,628,'_edit_lock','1652943245:2'),(818,629,'ec_counter_data','a:0:{}'),(819,630,'ec_counter_data','a:0:{}'),(820,631,'ec_counter_data','a:0:{}'),(821,631,'_edit_lock','1652943181:2'),(822,632,'ec_counter_data','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_520_ci NOT NULL,
  `post_title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_excerpt` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
  `post_password` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `post_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `to_ping` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `pinged` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content_filtered` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `guid` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT '0',
  `post_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_count` bigint(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`ID`),
  KEY `post_name` (`post_name`(191)),
  KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  KEY `post_parent` (`post_parent`),
  KEY `post_author` (`post_author`)
) ENGINE=InnoDB AUTO_INCREMENT=633 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `wp_posts` WRITE;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` VALUES (1,1,'2022-01-28 12:05:43','2022-01-28 12:05:43','<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->','Hello world!','','publish','open','open','','hello-world','','','2022-01-28 12:05:43','2022-01-28 12:05:43','',0,'http://demoweblinks.in/ping/?p=1',0,'post','',1),(2,1,'2022-01-28 12:05:43','2022-01-28 12:05:43','<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"http://demoweblinks.in/ping/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','Sample Page','','publish','closed','open','','sample-page','','','2022-01-28 12:05:43','2022-01-28 12:05:43','',0,'http://demoweblinks.in/ping/?page_id=2',0,'page','',0),(3,1,'2022-01-28 12:05:43','2022-01-28 12:05:43','<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: http://demoweblinks.in/ping.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Comments</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor&#8217;s IP address and browser user agent string to help spam detection.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Media</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Cookies</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select &quot;Remember Me&quot;, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Embedded content from other websites</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What rights you have over your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Where we send your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p><!-- /wp:paragraph -->','Privacy Policy','','draft','closed','open','','privacy-policy','','','2022-01-28 12:05:43','2022-01-28 12:05:43','',0,'http://demoweblinks.in/ping/?page_id=3',0,'page','',0),(6,1,'2022-01-28 12:22:24','2022-01-28 12:22:24','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h2>Ping Network</h2>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\" visibility=\"hide-for-medium\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\" visibility=\"show-for-medium hide-for-small\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\" visibility=\"show-for-small\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(233, 229, 228)\" padding=\"0px\" class=\"counter\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section bg_color=\"rgb(255, 255, 255)\" class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"506\" image_width=\"37\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"505\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"504\" image_width=\"53\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"502\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"501\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"500\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"490\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"489\" image_width=\"47\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"488\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hide-for-small\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Youtube Channels</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"3\"]\n\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"312\" name=\"The Stupendous Wave\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row depth_hover=\"3\"]\n\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section video_visibility=\"visible\" class=\"network\" visibility=\"show-for-medium\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Youtube Channel</h2>\n\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_style=\"simple\" nav_color=\"dark\" timer=\"3000\" pause_hover=\"false\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[scroll_to title=\"contactus\" bullet=\"false\"]\n\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Contact us</h2>\n[/ux_text]\n[gap]\n\n\n[/col]\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n<!-- /wp:flatsome/uxbuilder -->','Home','','publish','closed','closed','','home','','','2022-05-19 06:44:18','2022-05-19 06:44:18','',0,'http://demoweblinks.in/ping/?page_id=6',0,'page','',0),(7,1,'2022-01-28 12:09:57','2022-01-28 12:09:57','{\"version\": 2, \"isGlobalStylesUserThemeJSON\": true }','Custom Styles','','publish','closed','closed','','wp-global-styles-flatsome','','','2022-01-28 12:09:57','2022-01-28 12:09:57','',0,'http://demoweblinks.in/ping/2022/01/28/wp-global-styles-flatsome/',0,'wp_global_styles','',0),(8,1,'2022-01-28 12:10:16','2022-01-28 12:10:16','<!-- wp:html /-->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-01-28 12:10:16','2022-01-28 12:10:16','',6,'http://demoweblinks.in/ping/?p=8',0,'revision','',0),(9,1,'2022-01-28 12:22:24','2022-01-28 12:22:24','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text text_align=\"left\"]\n\n<p> </p>\n<h2>Ping Network</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" radius=\"99\" expand=\"0\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7454\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with image left</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>How We Work</h2>\n\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name & Logos</h2>\n\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-01-28 12:22:24','2022-01-28 12:22:24','',6,'http://demoweblinks.in/ping/?p=9',0,'revision','',0),(10,1,'2022-01-28 12:29:15','2022-01-28 12:29:15','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text text_align=\"left\"]\n\n<p> </p>\n<h2>Ping Network</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" radius=\"99\" expand=\"0\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7454\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with image left</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>How We Work</h2>\n\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name & Logos</h2>\n\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-01-28 12:29:15','2022-01-28 12:29:15','',6,'http://demoweblinks.in/ping/?p=10',0,'revision','',0),(11,1,'2022-01-28 12:29:49','2022-01-28 12:29:49','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text text_align=\"left\"]\n\n<p> </p>\n<h2>Ping Network</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" radius=\"99\" expand=\"0\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7454\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with image left</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Read More\" letter_case=\"lowercase\" radius=\"99\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>How We Work</h2>\n\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name & Logos</h2>\n\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-01-28 12:29:49','2022-01-28 12:29:49','',6,'http://demoweblinks.in/ping/?p=11',0,'revision','',0),(13,1,'2022-01-28 12:32:32','2022-01-28 12:32:32','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text text_align=\"left\"]\n\n<p> </p>\n<h2>Ping Network</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7454\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with image left</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Read More\" letter_case=\"lowercase\" radius=\"99\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name & Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-01-28 12:32:32','2022-01-28 12:32:32','',6,'http://demoweblinks.in/ping/?p=13',0,'revision','',0),(14,1,'2022-01-28 12:34:07','2022-01-28 12:34:07','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text text_align=\"left\"]\n\n<p> </p>\n<h2>Ping Network</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7454\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with image left</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Read More\" letter_case=\"lowercase\" radius=\"99\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name & Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-01-28 12:34:07','2022-01-28 12:34:07','',6,'http://demoweblinks.in/ping/?p=14',0,'revision','',0),(15,1,'2022-01-28 12:36:21','2022-01-28 12:36:21','','next-icon-btn','','inherit','open','closed','','next-icon-btn','','','2022-01-28 12:36:21','2022-01-28 12:36:21','',0,'http://demoweblinks.in/ping/wp-content/uploads/2022/01/next-icon-btn.png',0,'attachment','image/png',0),(17,1,'2022-01-28 12:37:49','2022-01-28 12:37:49','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text text_align=\"left\"]\n\n<p> </p>\n<h2>Ping Network</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7454\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with image left</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Read More\" letter_case=\"lowercase\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name & Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-01-28 12:37:49','2022-01-28 12:37:49','',6,'http://demoweblinks.in/ping/?p=17',0,'revision','',0),(18,1,'2022-01-28 12:38:21','2022-01-28 12:38:21','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text text_align=\"left\"]\n\n<p> </p>\n<h2>Ping Network</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7454\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with image left</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Read More\" letter_case=\"lowercase\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name & Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-01-28 12:38:21','2022-01-28 12:38:21','',6,'http://demoweblinks.in/ping/?p=18',0,'revision','',0),(26,1,'2022-01-28 12:46:02','2022-01-28 12:46:02','','Untitled-1','','inherit','open','closed','','untitled-1','','','2022-01-28 12:46:02','2022-01-28 12:46:02','',0,'http://demoweblinks.in/ping/wp-content/uploads/2022/01/Untitled-1.png',0,'attachment','image/png',0),(27,1,'2022-01-28 12:46:34','2022-01-28 12:46:34','','Untitled-2','','inherit','open','closed','','untitled-2','','','2022-01-28 12:46:34','2022-01-28 12:46:34','',0,'http://demoweblinks.in/ping/wp-content/uploads/2022/01/Untitled-2.png',0,'attachment','image/png',0),(28,1,'2022-01-28 12:47:21','2022-01-28 12:47:21','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text text_align=\"left\"]\n\n<p> </p>\n<h2>Ping Network</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"27\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7454\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with image left</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Read More\" letter_case=\"lowercase\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name & Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-01-28 12:47:21','2022-01-28 12:47:21','',6,'http://demoweblinks.in/ping/?p=28',0,'revision','',0),(32,1,'2022-01-28 12:49:23','2022-01-28 12:49:23','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n.network{\n	background:#f5f5f5;\n	padding-top: 60px!important;\n}\n.team {\n	 box-shadow: 10px 15px #d1d1d157;\n	    padding-top: 30px;\n    padding-bottom: 30px;\nbackground:#f8f8fa;\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n	border-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n/* .service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n} */\n.service-section{\n	background:rgb(233 229 229);\n	padding-top: 60px!important;\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.service1 h4{\n	color:#fb0201!important;\n}\n.service2 h4{\n	color:#fb0201!important;\n}\n.service3 h4{\n	color:#fb0201!important;\n}\n.box-text.text-center .service1{\n	height:250px;\n}\n.box-text.text-center .service2{\n	height:180px;\n}\n.box-text.text-center .service3{\n	height:140px;\n}\n.block{\n	border-radius:50px;\n} \n.aboutus{\n	padding-top: 18px!important;\n  \n} \n.header-main .nav > li > a:hover{\n	color:#446084;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\n	font-size:25px;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\n	font-size:20px;\n}\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n\n	border-top-right-radius: 30px;\n	border-top-left-radius: 30px;\n} */\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	border-radius:30px;\n/* 	border-bottom-right-radius: 30px;\n	border-bottom-left-radius: 30px; */\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n	min-height:140px;\n	background:transparent;\n}\n.counter{\n	padding-bottom:0px!important;\n}\n.ec-counter-items-wrap{\n	padding-top:80px!important;\n	padding-bottom:0px!important;\n}\n.social-icons{\n	padding-top:50px;\n}\n\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-top-container{\n	min-height: 170px;\n} */\n\n.ec-template1 .ec-counter-item-1 .ec-count-subtitle,.ec-template1 .ec-counter-item-2 .ec-count-subtitle,.ec-template1 .ec-counter-item-3 .ec-count-subtitle{\n	font-weight:bold;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	top:18px;\n}\n\n.contactus{\n	padding-top:60px!important;\n}\n.nav>li{\n	margin:0 22px;\n}\n.nav > li > a {\n    font-weight: 400;\n}\n .network .box-text h4{\n	 display:none;\n	font-size: .9em;\n	 text-transform:capitalize;\n	 font-weight:bolder;\n	 color:black;\n}\n.contactus .col{\n	padding: 0 15px 0px;\n}\nh2{\n	letter-spacing:5px;\n	font-weight:400;\n}\n.network .box{\n	padding-top:25px;\n}','flatsome','','publish','closed','closed','','flatsome','','','2022-05-05 09:30:02','2022-05-05 09:30:02','',0,'http://demoweblinks.in/ping/2022/01/28/flatsome/',0,'custom_css','',0),(33,1,'2022-01-28 12:49:23','2022-01-28 12:49:23','a.button.primary.lowercase.home-button{\n		float:left!important;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-01-28 12:49:23','2022-01-28 12:49:23','',32,'http://demoweblinks.in/ping/?p=33',0,'revision','',0),(34,1,'2022-01-28 12:50:01','2022-01-28 12:50:01','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text text_align=\"left\"]\n\n<p> </p>\n<h2>Ping Network</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"27\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7454\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with image left</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Read More\" letter_case=\"lowercase\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name & Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-01-28 12:50:01','2022-01-28 12:50:01','',6,'http://demoweblinks.in/ping/?p=34',0,'revision','',0),(35,1,'2022-01-28 12:50:45','2022-01-28 12:50:45','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text text_align=\"left\"]\n\n<p> </p>\n<h2>Ping Network</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"27\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with image left</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Read More\" letter_case=\"lowercase\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name & Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-01-28 12:50:45','2022-01-28 12:50:45','',6,'http://demoweblinks.in/ping/?p=35',0,'revision','',0),(36,1,'2022-01-28 12:52:52','2022-01-28 12:52:52','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text text_align=\"left\"]\n\n<p> </p>\n<h2>Ping Network</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"27\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with image left</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Read More\" letter_case=\"lowercase\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member image_height=\"100%\" image_width=\"80\" image_radius=\"100\" class=\"team\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name & Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-01-28 12:52:52','2022-01-28 12:52:52','',6,'http://demoweblinks.in/ping/?p=36',0,'revision','',0),(37,1,'2022-01-28 12:54:26','2022-01-28 12:54:26','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text text_align=\"left\"]\n\n<p> </p>\n<h2>Ping Network</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"27\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with image left</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Read More\" letter_case=\"lowercase\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name & Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-01-28 12:54:26','2022-01-28 12:54:26','',6,'http://demoweblinks.in/ping/?p=37',0,'revision','',0),(39,1,'2022-01-28 12:55:20','2022-01-28 12:55:20','a.button.primary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-01-28 12:55:20','2022-01-28 12:55:20','',32,'http://demoweblinks.in/ping/?p=39',0,'revision','',0),(40,1,'2022-01-28 12:55:50','2022-01-28 12:55:50','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text text_align=\"left\"]\n\n<p> </p>\n<h2>Ping Network</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"27\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with image left</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Read More\" letter_case=\"lowercase\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name & Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-01-28 12:55:50','2022-01-28 12:55:50','',6,'http://demoweblinks.in/ping/?p=40',0,'revision','',0),(41,1,'2022-01-28 12:56:34','2022-01-28 12:56:34','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text text_align=\"left\"]\n\n<p> </p>\n<h2>Ping Network</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"27\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with image left</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Read More\" letter_case=\"lowercase\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name & Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(193, 193, 193)\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-01-28 12:56:34','2022-01-28 12:56:34','',6,'http://demoweblinks.in/ping/?p=41',0,'revision','',0),(43,1,'2022-01-28 12:58:00','2022-01-28 12:58:00','a.button.primary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-01-28 12:58:00','2022-01-28 12:58:00','',32,'http://demoweblinks.in/ping/?p=43',0,'revision','',0),(45,1,'2022-01-28 13:00:37','2022-01-28 13:00:37','[section padding=\"0px\"]\n\n[row]\n\n[col span__sm=\"12\" padding=\"0px 0px 0 0px\"]\n\n[follow style=\"fill\" align=\"center\" instagram=\"#\" twitter=\"#\" linkedin=\"#\"]\n\n\n[/col]\n\n[/row]\n\n[/section]','Footer','','publish','closed','closed','','footer','','','2022-02-28 05:52:49','2022-02-28 05:52:49','',0,'http://demoweblinks.in/ping/?post_type=blocks&#038;p=45',0,'blocks','',0),(46,1,'2022-01-28 13:00:37','2022-01-28 13:00:37','','Footer','','inherit','closed','closed','','45-revision-v1','','','2022-01-28 13:00:37','2022-01-28 13:00:37','',45,'http://demoweblinks.in/ping/?p=46',0,'revision','',0),(47,1,'2022-01-28 13:02:27','2022-01-28 13:02:27','[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[follow style=\"fill\" align=\"center\" instagram=\"#\" twitter=\"#\" linkedin=\"#\"]\n\n\n[/col]\n\n[/row]\n\n[/section]','Footer','','inherit','closed','closed','','45-revision-v1','','','2022-01-28 13:02:27','2022-01-28 13:02:27','',45,'http://demoweblinks.in/ping/?p=47',0,'revision','',0),(49,1,'2022-01-28 13:03:28','2022-01-28 13:03:28','a.button.primary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-01-28 13:03:28','2022-01-28 13:03:28','',32,'http://demoweblinks.in/ping/?p=49',0,'revision','',0),(51,1,'2022-01-28 13:04:25','2022-01-28 13:04:25','','Ping Logo-02','','inherit','open','closed','','ping-logo-02','','','2022-01-28 13:04:25','2022-01-28 13:04:25','',0,'http://demoweblinks.in/ping/wp-content/uploads/2022/01/Ping-Logo-02.png',0,'attachment','image/png',0),(53,1,'2022-01-28 13:05:57','2022-01-28 13:05:57','http://demoweblinks.in/ping/wp-content/uploads/2022/01/cropped-Ping-Logo-02.png','cropped-Ping-Logo-02.png','','inherit','open','closed','','cropped-ping-logo-02-png','','','2022-01-28 13:05:57','2022-01-28 13:05:57','',0,'http://demoweblinks.in/ping/wp-content/uploads/2022/01/cropped-Ping-Logo-02.png',0,'attachment','image/png',0),(58,1,'2022-01-28 13:09:34','2022-01-28 13:09:34','<label> Your name\n    [text* your-name] </label>\n\n<label> Your email\n    [email* your-email] </label>\n\n<label> Subject\n    [text* your-subject] </label>\n\n<label> Your message (optional)\n    [textarea your-message] </label>\n\n[submit \"Submit\"]\n[_site_title] \"[your-subject]\"\n[_site_title] <wordpress@demoweblinks.in>\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\n[_site_admin_email]\nReply-To: [your-email]\n\n0\n0\n\n[_site_title] \"[your-subject]\"\n[_site_title] <wordpress@demoweblinks.in>\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\n[your-email]\nReply-To: [_site_admin_email]\n\n0\n0\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.','Contact form 1','','publish','closed','closed','','contact-form-1','','','2022-01-28 13:09:34','2022-01-28 13:09:34','',0,'http://demoweblinks.in/ping/?post_type=wpcf7_contact_form&p=58',0,'wpcf7_contact_form','',0),(59,1,'2022-01-28 13:10:45','2022-01-28 13:10:45','<div class=\"row\">\r\n<div class=\"col small-6 large-6\">\r\n[text* name placeholder \"Name\"]\r\n</div>\r\n<div class=\"col small-6 large-6\">\r\n[countrytext country class:con placeholder \"country\"]\r\n</div>\r\n</div>\r\n\r\n<div class=\"row\">\r\n<div class=\"col small-6 large-6\">\r\n[text* youtube class:youtubes placeholder \"Youtube\"]\r\n</div>\r\n<div class=\"col small-6 large-6\">\r\n\r\n\r\n[text channelname placeholder \"Channel Name\"]\r\n</div>\r\n</div>\r\n\r\n<div class=\"row\">\r\n<div class=\"col small-6 large-6\">\r\n[select category \"cat1\" \"cat2\" \"cat3\"]\r\n</div>\r\n<div class=\"col small-6 large-6\">\r\n\r\n\r\n[email* email placeholder \"Email\"]\r\n</div>\r\n</div>\r\n\r\n<div class=\"row row-small align-middle\" >\r\n<div class=\"col medium-12 small-12 large-12 newsletter-btn\">\r\n[submit class:button class:secondary class:lowercase class:home-buttons  \"Submit\"]\r\n</div>\r\n\r\n</div>\n1\n[_site_title] \"[your-subject]\"\n[_site_title] <wordpress@demoweblinks.in>\n[_site_admin_email]\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\nReply-To: [your-email]\n\n\n\n\n[_site_title] \"[your-subject]\"\n[_site_title] <wordpress@demoweblinks.in>\n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\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.','contact from','','publish','closed','closed','','contact-from','','','2022-02-17 07:07:46','2022-02-17 07:07:46','',0,'http://demoweblinks.in/ping/?post_type=wpcf7_contact_form&#038;p=59',0,'wpcf7_contact_form','',0),(60,1,'2022-01-28 13:17:12','2022-01-28 13:17:12','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text text_align=\"left\"]\n\n<p> </p>\n<h2>Ping Network</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"27\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with image left</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Read More\" letter_case=\"lowercase\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name & Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(193, 193, 193)\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-01-28 13:17:12','2022-01-28 13:17:12','',6,'http://demoweblinks.in/ping/?p=60',0,'revision','',0),(61,1,'2022-01-28 13:17:55','2022-01-28 13:17:55','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text text_align=\"left\"]\n\n<p>&nbsp;</p>\n<h2>Ping Network</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"27\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with image left</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Read More\" letter_case=\"lowercase\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(193, 193, 193)\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n[contact-form-7 id=\"59\" title=\"contact from\"]\n\n[/col]\n\n[/row]\n\n[/section]\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-01-28 13:17:55','2022-01-28 13:17:55','',6,'http://demoweblinks.in/ping/?p=61',0,'revision','',0),(67,1,'2022-01-28 13:26:30','2022-01-28 13:26:30','','cheerful-students-jumping-excitement','','inherit','open','closed','','cheerful-students-jumping-excitement','','','2022-01-28 13:26:30','2022-01-28 13:26:30','',0,'http://demoweblinks.in/ping/wp-content/uploads/2022/01/cheerful-students-jumping-excitement.jpg',0,'attachment','image/jpeg',0),(68,1,'2022-01-28 13:27:48','2022-01-28 13:27:48','','download (2)','','inherit','open','closed','','download-2','','','2022-01-28 13:27:48','2022-01-28 13:27:48','',0,'http://demoweblinks.in/ping/wp-content/uploads/2022/01/download-2.jpg',0,'attachment','image/jpeg',0),(69,1,'2022-01-28 13:28:32','2022-01-28 13:28:32','','How_Do_I_Correctly_Format_a_Copyright','','inherit','open','closed','','how_do_i_correctly_format_a_copyright','','','2022-01-28 13:28:32','2022-01-28 13:28:32','',0,'http://demoweblinks.in/ping/wp-content/uploads/2022/01/How_Do_I_Correctly_Format_a_Copyright.jpg',0,'attachment','image/jpeg',0),(70,1,'2022-01-28 13:28:51','2022-01-28 13:28:51','','images','','inherit','open','closed','','images','','','2022-01-28 13:28:51','2022-01-28 13:28:51','',0,'http://demoweblinks.in/ping/wp-content/uploads/2022/01/images.jpg',0,'attachment','image/jpeg',0),(71,1,'2022-01-28 13:29:24','2022-01-28 13:29:24','','unnamed','','inherit','open','closed','','unnamed','','','2022-01-28 13:29:24','2022-01-28 13:29:24','',0,'http://demoweblinks.in/ping/wp-content/uploads/2022/01/unnamed.png',0,'attachment','image/png',0),(72,1,'2022-01-28 13:30:08','2022-01-28 13:30:08','','yt_1200','','inherit','open','closed','','yt_1200','','','2022-01-28 13:30:08','2022-01-28 13:30:08','',0,'http://demoweblinks.in/ping/wp-content/uploads/2022/01/yt_1200.png',0,'attachment','image/png',0),(73,1,'2022-01-28 13:32:49','2022-01-28 13:32:49','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text text_align=\"left\"]\n\n<p>&nbsp;</p>\n<h2>Ping Network</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"27\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with image left</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Read More\" letter_case=\"lowercase\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(193, 193, 193)\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-01-28 13:32:49','2022-01-28 13:32:49','',6,'http://demoweblinks.in/ping/?p=73',0,'revision','',0),(74,1,'2022-01-28 13:33:17','2022-01-28 13:33:17','','tm9','','inherit','open','closed','','tm9','','','2022-01-28 13:33:17','2022-01-28 13:33:17','',0,'http://demoweblinks.in/ping/wp-content/uploads/2022/01/tm9.jpg',0,'attachment','image/jpeg',0),(75,1,'2022-01-28 13:33:39','2022-01-28 13:33:39','','images (2)','','inherit','open','closed','','images-2','','','2022-01-28 13:33:39','2022-01-28 13:33:39','',0,'http://demoweblinks.in/ping/wp-content/uploads/2022/01/images-2.jpg',0,'attachment','image/jpeg',0),(76,1,'2022-01-28 13:33:53','2022-01-28 13:33:53','','images (1)','','inherit','open','closed','','images-1','','','2022-01-28 13:33:53','2022-01-28 13:33:53','',0,'http://demoweblinks.in/ping/wp-content/uploads/2022/01/images-1.jpg',0,'attachment','image/jpeg',0),(77,1,'2022-01-28 13:34:43','2022-01-28 13:34:43','','team-member-04','','inherit','open','closed','','team-member-04','','','2022-01-28 13:34:43','2022-01-28 13:34:43','',0,'http://demoweblinks.in/ping/wp-content/uploads/2022/01/team-member-04.jpg',0,'attachment','image/jpeg',0),(78,1,'2022-01-28 13:34:55','2022-01-28 13:34:55','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text text_align=\"left\"]\n\n<p>&nbsp;</p>\n<h2>Ping Network</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"27\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with image left</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Read More\" letter_case=\"lowercase\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(193, 193, 193)\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-01-28 13:34:55','2022-01-28 13:34:55','',6,'http://demoweblinks.in/ping/?p=78',0,'revision','',0),(79,1,'2022-01-28 13:35:39','2022-01-28 13:35:39','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text text_align=\"left\"]\n\n<p>&nbsp;</p>\n<h2>Ping Network</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"27\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with image left</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Read More\" letter_case=\"lowercase\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Lorem ipsum.. </p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(193, 193, 193)\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-01-28 13:35:39','2022-01-28 13:35:39','',6,'http://demoweblinks.in/ping/?p=79',0,'revision','',0),(80,1,'2022-04-27 07:34:56','2022-01-31 03:04:23',' ','','','publish','closed','closed','','80','','','2022-04-27 07:34:56','2022-04-27 07:34:56','',0,'http://demoweblinks.in/ping/?p=80',1,'nav_menu_item','',0),(81,1,'2022-04-27 07:34:56','2022-01-31 03:04:23','','About Us','','publish','closed','closed','','about-us','','','2022-04-27 07:34:56','2022-04-27 07:34:56','',0,'http://demoweblinks.in/ping/?p=81',2,'nav_menu_item','',0),(82,1,'2022-04-27 07:34:56','2022-01-31 03:04:23','','Services','','publish','closed','closed','','how-we-work','','','2022-04-27 07:34:56','2022-04-27 07:34:56','',0,'http://demoweblinks.in/ping/?p=82',3,'nav_menu_item','',0),(83,1,'2022-04-27 07:34:56','2022-01-31 03:04:23','','Channels','','publish','closed','closed','','network','','','2022-04-27 07:34:56','2022-04-27 07:34:56','',0,'http://demoweblinks.in/ping/?p=83',4,'nav_menu_item','',0),(88,1,'2022-01-31 10:17:42','2022-01-31 10:17:42','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text text_align=\"left\"]\n\n<p>&nbsp;</p>\n<h2>Ping Network</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"27\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 >About us</h2>\n<p>We, PingNetwork is India’s largest studio MCN with channels catering to a range of infotainment genres such as Food, Fashion, Music, Technology, Gaming, Dance, News & a lot more. With over 180+ channels around the globe, we reach millions every month. We are a certified partner of YouTube that offer assistance to publishers with Channel Management</p>\n\n[button text=\"Read More\" letter_case=\"lowercase\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Channel<br /> Management </p>\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Us with Holding</br> Tax Rate</p>\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Brand<br /> Collaboration </p>\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Channel<br /> Strategy</p>\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p> Flexible<br />Payment<br />Solutioin</p>\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p>Training From<br /> Youtube &<br /> Learning Meterials</p>\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p> Acess To <br /> Paladin Creator<br /> Dashboard</p>\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(193, 193, 193)\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-01-31 10:17:42','2022-01-31 10:17:42','',6,'http://demoweblinks.in/ping/?p=88',0,'revision','',0),(89,1,'2022-01-31 10:20:40','2022-01-31 10:20:40','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text text_align=\"left\"]\n\n<p>&nbsp;</p>\n<h2>Ping Network</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"27\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 >About us</h2>\n<p>We, PingNetwork is India’s largest studio MCN with channels catering to a range of infotainment genres such as Food, Fashion, Music, Technology, Gaming, Dance, News & a lot more. With over 180+ channels around the globe, we reach millions every month. We are a certified partner of YouTube that offer assistance to publishers with Channel Management</p>\n[button text=\"Read More\" letter_case=\"lowercase\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Channel<br /> Management </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Us with Holding</br> Tax Rate</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Brand<br /> Collaboration </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Channel<br /> Strategy</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p> Flexible<br />Payment<br />Solutioin</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p>Training From<br /> Youtube &<br /> Learning Meterials</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p> Acess To <br /> Paladin Creator<br /> Dashboard</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(193, 193, 193)\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-01-31 10:20:40','2022-01-31 10:20:40','',6,'http://demoweblinks.in/ping/?p=89',0,'revision','',0),(90,1,'2022-01-31 11:41:13','2022-01-31 11:41:13','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text text_align=\"left\"]\n\n<p>&nbsp;</p>\n<h2>Ping Network</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"27\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 >About us</h2>\n<p>We, PingNetwork is India’s largest studio MCN with channels catering to a range of infotainment genres such as Food, Fashion, Music, Technology, Gaming, Dance, News & a lot more. With over 180+ channels around the globe, we reach millions every month. We are a certified partner of YouTube that offer assistance to publishers with Channel Management</p>\n[button text=\"Read More\" letter_case=\"lowercase\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Channel<br /> Management </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Us with Holding</br> Tax Rate</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Brand<br /> Collaboration </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Channel<br /> Strategy</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p> Flexible<br />Payment<br />Solutioin</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p>Training From<br /> Youtube &<br /> Learning Meterials</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p> Acess To <br /> Paladin Creator<br /> Dashboard</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(193, 193, 193)\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-01-31 11:41:13','2022-01-31 11:41:13','',6,'http://demoweblinks.in/ping/?p=90',0,'revision','',0),(91,1,'2022-01-31 11:41:22','2022-01-31 11:41:22','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text text_align=\"left\"]\n\n<p>&nbsp;</p>\n<h2>Ping Network</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"27\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 >About us</h2>\n<p>We, PingNetwork is India’s largest studio MCN with channels catering to a range of infotainment genres such as Food, Fashion, Music, Technology, Gaming, Dance, News & a lot more. With over 180+ channels around the globe, we reach millions every month. We are a certified partner of YouTube that offer assistance to publishers with Channel Management</p>\n[button text=\"Read More\" letter_case=\"lowercase\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Channel<br /> Management </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Us with Holding</br> Tax Rate</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Brand<br /> Collaboration </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Channel<br /> Strategy</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p> Flexible<br />Payment<br />Solutioin</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p>Training From<br /> Youtube &<br /> Learning Meterials</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p> Acess To <br /> Paladin Creator<br /> Dashboard</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(193, 193, 193)\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-01-31 11:41:22','2022-01-31 11:41:22','',6,'http://demoweblinks.in/ping/?p=91',0,'revision','',0),(92,1,'2022-01-31 11:42:27','2022-01-31 11:42:27','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text text_align=\"left\"]\n\n<p>&nbsp;</p>\n<h2>Ping Network</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"27\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 >About us</h2>\n<p>We, PingNetwork is India’s largest studio MCN with channels catering to a range of infotainment genres such as Food, Fashion, Music, Technology, Gaming, Dance, News & a lot more. With over 180+ channels around the globe, we reach millions every month. We are a certified partner of YouTube that offer assistance to publishers with Channel Management</p>\n[button text=\"Read More\" letter_case=\"lowercase\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Channel<br /> Management </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Us with Holding</br> Tax Rate</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Brand<br /> Collaboration </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Channel<br /> Strategy</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p> Flexible<br />Payment<br />Solutioin</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p>Training From<br /> Youtube &<br /> Learning Meterials</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p> Acess To <br /> Paladin Creator<br /> Dashboard</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"success\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(193, 193, 193)\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-01-31 11:42:27','2022-01-31 11:42:27','',6,'http://demoweblinks.in/ping/?p=92',0,'revision','',0),(94,1,'2022-01-31 11:46:00','2022-01-31 11:46:00','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text text_align=\"left\"]\n\n<p>&nbsp;</p>\n<h2>Ping Network</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"27\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 >About us</h2>\n<p>We, PingNetwork is India’s largest studio MCN with channels catering to a range of infotainment genres such as Food, Fashion, Music, Technology, Gaming, Dance, News & a lot more. With over 180+ channels around the globe, we reach millions every month.<b color=\"red\"> We are a certified partner of YouTube that offer assistance to publishers with Channel Management</b></p>\n\n[button text=\"Read More\" letter_case=\"lowercase\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Channel<br /> Management </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Us with Holding</br> Tax Rate</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Brand<br /> Collaboration </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Channel<br /> Strategy</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p> Flexible<br />Payment<br />Solutioin</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p>Training From<br /> Youtube &<br /> Learning Meterials</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p> Acess To <br /> Paladin Creator<br /> Dashboard</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"success\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(193, 193, 193)\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-01-31 11:46:00','2022-01-31 11:46:00','',6,'http://demoweblinks.in/ping/?p=94',0,'revision','',0),(95,1,'2022-01-31 11:46:41','2022-01-31 11:46:41','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text text_align=\"left\"]\n\n<p>&nbsp;</p>\n<h2>Ping Network</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"27\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 >About us</h2>\n<p>We, PingNetwork is India’s largest studio MCN with channels catering to a range of infotainment genres such as Food, Fashion, Music, Technology, Gaming, Dance, News & a lot more. With over 180+ channels around the globe, we reach millions every month.<b style=\"color:red;\"> We are a certified partner of YouTube that offer assistance to publishers with Channel Management</b></p>\n\n[button text=\"Read More\" letter_case=\"lowercase\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Channel<br /> Management </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Us with Holding</br> Tax Rate</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Brand<br /> Collaboration </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Channel<br /> Strategy</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p> Flexible<br />Payment<br />Solutioin</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p>Training From<br /> Youtube &<br /> Learning Meterials</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p> Acess To <br /> Paladin Creator<br /> Dashboard</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"success\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(193, 193, 193)\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-01-31 11:46:41','2022-01-31 11:46:41','',6,'http://demoweblinks.in/ping/?p=95',0,'revision','',0),(96,1,'2022-01-31 11:47:51','2022-01-31 11:47:51','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text text_align=\"left\"]\n\n<p>&nbsp;</p>\n<h2>Ping Network</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"27\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 >About us</h2>\n<p>We, PingNetwork is India’s largest studio MCN with channels catering to a range of infotainment genres such as Food, Fashion, Music, Technology, Gaming, Dance, News & a lot more. With over 180+ channels around the globe, we reach millions every month.<b style=\"color:red;\"> We are a certified partner of YouTube that offer assistance to publishers with Channel Management</b></p>\n\n[button text=\"Read More\" letter_case=\"lowercase\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Channel<br /> Management </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Us with Holding</br> Tax Rate</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Brand<br /> Collaboration </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Channel<br /> Strategy</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p> Flexible<br />Payment<br />Solutioin</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p>Training From<br /> Youtube &<br /> Learning Meterials</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p> Acess To <br /> Paladin Creator<br /> Dashboard</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"success\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(193, 193, 193)\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-01-31 11:47:51','2022-01-31 11:47:51','',6,'http://demoweblinks.in/ping/?p=96',0,'revision','',0),(100,1,'2022-01-31 12:19:52','2022-01-31 12:19:52','a.button.primary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n\n\n.wpcf7-form input {\nborder-radius:6px;                  /* Makes the edges rounded */\n}\n.wpcf7-form textarea {\nborder-radius:6px;          /* Makes the edges rounded */\n}\n.wpcf7-form .wpcf7-submit {     \nbackground:#00a6ca;         /* This edit the button colour */\n}\n.wpcf7 .wpcf7-text,\n.wpcf7 .wpcf7-textarea{\n  text-indent: 35px;\n}\n.wpcf7 p{ position: relative; }\n.wpcf7 p .fa{\n  position: absolute;\n  color: #666666;\n  z-index: 100;\n  font-size: 18px;\n  top: 28%;\n  left: 1.5%;\n}\n.wpcf7 p .fa-pencil{ top: 5%; left: 1.5%}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-01-31 12:19:52','2022-01-31 12:19:52','',32,'http://demoweblinks.in/ping/?p=100',0,'revision','',0),(102,1,'2022-01-31 12:20:23','2022-01-31 12:20:23','a.button.primary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n\n\n.wpcf7-form input {\nborder-radius:6px;                  /* Makes the edges rounded */\n}\n.wpcf7-form textarea {\nborder-radius:6px;          /* Makes the edges rounded */\n}\n.wpcf7-form .wpcf7-submit {     \nbackground:#00a6ca;         /* This edit the button colour */\n}\n.wpcf7 .wpcf7-text,\n.wpcf7 .wpcf7-textarea{\n	padding-left: 45px;align-content}\n.wpcf7 p{ position: relative; }\n.wpcf7 p .fa{\n  position: absolute;\n  color: #666666;\n  z-index: 100;\n  font-size: 18px;\n  top: 28%;\n  left: 1.5%;\n}\n.wpcf7 p .fa-pencil{ top: 5%; left: 1.5%}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-01-31 12:20:23','2022-01-31 12:20:23','',32,'http://demoweblinks.in/ping/?p=102',0,'revision','',0),(104,1,'2022-01-31 12:23:25','2022-01-31 12:23:25','a.button.primary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n\n\n.wpcf7-form input[type=\"text\"], input[type=\"email\"], textarea {\n    width:100% !important;\n}\n\n.wpcf7 .wpcf7-text, .wpcf7 .wpcf7-email, .wpcf7 .wpcf7-textarea {\n  padding-left: 45px;\n}\n\n.wpcf7 p { position: relative; }\n.wpcf7 p .fa-user, .wpcf7 p .fa-envelope {\n  position: absolute;\n  color: #666666;\n  z-index: 100;\n  font-size: 18px;\n  top: 18%;\n  left: 3%;\n}\n\n.wpcf7 p .fa-pencil {\n  position: absolute;\n  color: #666666;\n  z-index: 100;\n  font-size: 18px;\n  top: 6%;\n  left: 3%;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-01-31 12:23:25','2022-01-31 12:23:25','',32,'http://demoweblinks.in/ping/?p=104',0,'revision','',0),(106,1,'2022-01-31 12:26:35','2022-01-31 12:26:35','a.button.primary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n\n\n.wpcf7-form input[type=\"text\"], input[type=\"email\"], textarea {\n    width:100% !important;\n}\n\n.wpcf7 .wpcf7-text, .wpcf7 .wpcf7-email, .wpcf7 .wpcf7-textarea {\n  padding-left: 45px;\n}\n\n.wpcf7 p { position: relative; }\n.wpcf7 p .fa-user, .wpcf7 p .fa-envelope {\n  position: absolute;\n  color: #666666;\n  z-index: 100;\n  font-size: 18px;\n  top: 18%;\n  left: 3%;\n}\n\n.wpcf7 p .fa-pencil {\n  position: absolute;\n  color: #666666;\n  z-index: 100;\n  font-size: 18px;\n  top: 6%;\n  left: 3%;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/next-icon-btn.png);\n    background-size: 20px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 36px !important;\n    height: 36px;\n    top: 9px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-01-31 12:26:35','2022-01-31 12:26:35','',32,'http://demoweblinks.in/ping/?p=106',0,'revision','',0),(108,1,'2022-01-31 12:26:49','2022-01-31 12:26:49','a.button.primary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n\n\n.wpcf7-form input[type=\"text\"], input[type=\"email\"], textarea {\n    width:100% !important;\n}\n\n.wpcf7 .wpcf7-text, .wpcf7 .wpcf7-email, .wpcf7 .wpcf7-textarea {\n  padding-left: 45px;\n}\n\n.wpcf7 p { position: relative; }\n.wpcf7 p .fa-user, .wpcf7 p .fa-envelope {\n  position: absolute;\n  color: #666666;\n  z-index: 100;\n  font-size: 18px;\n  top: 18%;\n  left: 3%;\n}\n\n.wpcf7 p .fa-pencil {\n  position: absolute;\n  color: #666666;\n  z-index: 100;\n  font-size: 18px;\n  top: 6%;\n  left: 3%;\n}\n\n\n.youtube:before{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/next-icon-btn.png);\n    background-size: 20px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 36px !important;\n    height: 36px;\n    top: 9px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-01-31 12:26:49','2022-01-31 12:26:49','',32,'http://demoweblinks.in/ping/?p=108',0,'revision','',0),(110,1,'2022-01-31 12:29:49','2022-01-31 12:29:49','a.button.primary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n\n\n.wpcf7-form input[type=\"text\"], input[type=\"email\"], textarea {\n    width:100% !important;\n}\n\n.wpcf7 .wpcf7-text, .wpcf7 .wpcf7-email, .wpcf7 .wpcf7-textarea {\n  padding-left: 45px;\n}\n\n.wpcf7 p { position: relative; }\n.wpcf7 p .fa-user, .wpcf7 p .fa-envelope {\n  position: absolute;\n  color: #666666;\n  z-index: 100;\n  font-size: 18px;\n  top: 18%;\n  left: 3%;\n}\n\n.wpcf7 p .fa-pencil {\n  position: absolute;\n  color: #666666;\n  z-index: 100;\n  font-size: 18px;\n  top: 6%;\n  left: 3%;\n}\n\n\n.icon-youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/next-icon-btn.png);\n    background-size: 20px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 36px !important;\n    height: 36px;\n    top: 9px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-01-31 12:29:49','2022-01-31 12:29:49','',32,'http://demoweblinks.in/ping/?p=110',0,'revision','',0),(112,1,'2022-01-31 12:30:39','2022-01-31 12:30:39','a.button.primary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n\n\n.wpcf7-form input[type=\"text\"], input[type=\"email\"], textarea {\n    width:100% !important;\n}\n\n.wpcf7 .wpcf7-text, .wpcf7 .wpcf7-email, .wpcf7 .wpcf7-textarea {\n  padding-left: 45px;\n}\n\n.wpcf7 p { position: relative; }\n.wpcf7 p .fa-user, .wpcf7 p .fa-envelope {\n  position: absolute;\n  color: #666666;\n  z-index: 100;\n  font-size: 18px;\n  top: 18%;\n  left: 3%;\n}\n\n.wpcf7 p .fa-pencil {\n  position: absolute;\n  color: #666666;\n  z-index: 100;\n  font-size: 18px;\n  top: 6%;\n  left: 3%;\n}\n\n\n.icon-youtube:before{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/next-icon-btn.png);\n    background-size: 20px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 36px !important;\n    height: 36px;\n    top: 9px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-01-31 12:30:39','2022-01-31 12:30:39','',32,'http://demoweblinks.in/ping/?p=112',0,'revision','',0),(114,1,'2022-01-31 12:31:37','2022-01-31 12:31:37','a.button.primary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n\n\n.wpcf7-form input[type=\"text\"], input[type=\"email\"], textarea {\n    width:100% !important;\n}\n\n.wpcf7 .wpcf7-text, .wpcf7 .wpcf7-email, .wpcf7 .wpcf7-textarea {\n  padding-left: 45px;\n}\n\n.wpcf7 p { position: relative; }\n.wpcf7 p .fa-user, .wpcf7 p .fa-envelope {\n  position: absolute;\n  color: #666666;\n  z-index: 100;\n  font-size: 18px;\n  top: 18%;\n  left: 3%;\n}\n\n.wpcf7 p .fa-pencil {\n  position: absolute;\n  color: #666666;\n  z-index: 100;\n  font-size: 18px;\n  top: 6%;\n  left: 3%;\n}\n\n\n.youtubes:before{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/next-icon-btn.png);\n    background-size: 20px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 36px !important;\n    height: 36px;\n    top: 9px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-01-31 12:31:37','2022-01-31 12:31:37','',32,'http://demoweblinks.in/ping/?p=114',0,'revision','',0),(116,1,'2022-01-31 12:32:08','2022-01-31 12:32:08','a.button.primary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n\n\n.wpcf7-form input[type=\"text\"], input[type=\"email\"], textarea {\n    width:100% !important;\n}\n\n.wpcf7 .wpcf7-text, .wpcf7 .wpcf7-email, .wpcf7 .wpcf7-textarea {\n  padding-left: 45px;\n}\n\n.wpcf7 p { position: relative; }\n.wpcf7 p .fa-user, .wpcf7 p .fa-envelope {\n  position: absolute;\n  color: #666666;\n  z-index: 100;\n  font-size: 18px;\n  top: 18%;\n  left: 3%;\n}\n\n.wpcf7 p .fa-pencil {\n  position: absolute;\n  color: #666666;\n  z-index: 100;\n  font-size: 18px;\n  top: 6%;\n  left: 3%;\n}\n\n\n.youtube:before{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/next-icon-btn.png);\n    background-size: 20px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 36px !important;\n    height: 36px;\n    top: 9px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-01-31 12:32:08','2022-01-31 12:32:08','',32,'http://demoweblinks.in/ping/?p=116',0,'revision','',0),(118,1,'2022-01-31 12:33:35','2022-01-31 12:33:35','a.button.primary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n\n\n.wpcf7-form input[type=\"text\"], input[type=\"email\"], textarea {\n    width:100% !important;\n}\n\n.wpcf7 .wpcf7-text, .wpcf7 .wpcf7-email, .wpcf7 .wpcf7-textarea {\n  padding-left: 45px;\n}\n\n.wpcf7 p { position: relative; }\n.wpcf7 p .fa-user, .wpcf7 p .fa-envelope {\n  position: absolute;\n  color: #666666;\n  z-index: 100;\n  font-size: 18px;\n  top: 18%;\n  left: 3%;\n}\n\n.wpcf7 p .fa-pencil {\n  position: absolute;\n  color: #666666;\n  z-index: 100;\n  font-size: 18px;\n  top: 6%;\n  left: 3%;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/next-icon-btn.png);\n    background-size: 20px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 36px !important;\n    height: 36px;\n    top: 9px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-01-31 12:33:35','2022-01-31 12:33:35','',32,'http://demoweblinks.in/ping/?p=118',0,'revision','',0),(120,1,'2022-01-31 12:34:10','2022-01-31 12:34:10','a.button.primary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n\n\n.wpcf7-form input[type=\"text\"], input[type=\"email\"], textarea {\n    width:100% !important;\n}\n\n.wpcf7 .wpcf7-text, .wpcf7 .wpcf7-email, .wpcf7 .wpcf7-textarea {\n  padding-left: 45px;\n}\n\n.wpcf7 p { position: relative; }\n.wpcf7 p .fa-user, .wpcf7 p .fa-envelope {\n  position: absolute;\n  color: #666666;\n  z-index: 100;\n  font-size: 18px;\n  top: 18%;\n  left: 3%;\n}\n\n.wpcf7 p .fa-pencil {\n  position: absolute;\n  color: #666666;\n  z-index: 100;\n  font-size: 18px;\n  top: 6%;\n  left: 3%;\n}\n\n\n.youtubes:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/next-icon-btn.png);\n    background-size: 20px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 36px !important;\n    height: 36px;\n    top: 9px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-01-31 12:34:10','2022-01-31 12:34:10','',32,'http://demoweblinks.in/ping/?p=120',0,'revision','',0),(122,1,'2022-01-31 12:34:34','2022-01-31 12:34:34','a.button.primary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n\n\n.wpcf7-form input[type=\"text\"], input[type=\"email\"], textarea {\n    width:100% !important;\n}\n\n.wpcf7 .wpcf7-text, .wpcf7 .wpcf7-email, .wpcf7 .wpcf7-textarea {\n  padding-left: 45px;\n}\n\n.wpcf7 p { position: relative; }\n.wpcf7 p .fa-user, .wpcf7 p .fa-envelope {\n  position: absolute;\n  color: #666666;\n  z-index: 100;\n  font-size: 18px;\n  top: 18%;\n  left: 3%;\n}\n\n.wpcf7 p .fa-pencil {\n  position: absolute;\n  color: #666666;\n  z-index: 100;\n  font-size: 18px;\n  top: 6%;\n  left: 3%;\n}\n\n\n.youtubes:before{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/next-icon-btn.png);\n    background-size: 20px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 36px !important;\n    height: 36px;\n    top: 9px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-01-31 12:34:34','2022-01-31 12:34:34','',32,'http://demoweblinks.in/ping/?p=122',0,'revision','',0),(124,1,'2022-01-31 12:35:33','2022-01-31 12:35:33','a.button.primary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n\n\n.wpcf7-form input[type=\"text\"], input[type=\"email\"], textarea {\n    width:100% !important;\n}\n\n.wpcf7 .wpcf7-text, .wpcf7 .wpcf7-email, .wpcf7 .wpcf7-textarea {\n  padding-left: 45px;\n}\n\n.wpcf7 p { position: relative; }\n.wpcf7 p .fa-user, .wpcf7 p .fa-envelope {\n  position: absolute;\n  color: #666666;\n  z-index: 100;\n  font-size: 18px;\n  top: 18%;\n  left: 3%;\n}\n\n.wpcf7 p .fa-pencil {\n  position: absolute;\n  color: #666666;\n  z-index: 100;\n  font-size: 18px;\n  top: 6%;\n  left: 3%;\n}\n\n\n.wpcf7-form-control-wrap youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/next-icon-btn.png);\n    background-size: 20px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 36px !important;\n    height: 36px;\n    top: 9px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-01-31 12:35:33','2022-01-31 12:35:33','',32,'http://demoweblinks.in/ping/?p=124',0,'revision','',0),(126,1,'2022-01-31 12:37:42','2022-01-31 12:37:42','a.button.primary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n\n\n.wpcf7-form input[type=\"text\"], input[type=\"email\"], textarea {\n    width:100% !important;\n}\n\n.wpcf7 .wpcf7-text, .wpcf7 .wpcf7-email, .wpcf7 .wpcf7-textarea {\n  padding-left: 45px;\n}\n\n.wpcf7 p { position: relative; }\n.wpcf7 p .fa-user, .wpcf7 p .fa-envelope {\n  position: absolute;\n  color: #666666;\n  z-index: 100;\n  font-size: 18px;\n  top: 18%;\n  left: 3%;\n}\n\n.wpcf7 p .fa-pencil {\n  position: absolute;\n  color: #666666;\n  z-index: 100;\n  font-size: 18px;\n  top: 6%;\n  left: 3%;\n}\n\n\n.wpcf7-form-control-wrap .youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/next-icon-btn.png);\n    background-size: 20px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 36px !important;\n    height: 36px;\n    top: 9px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-01-31 12:37:42','2022-01-31 12:37:42','',32,'http://demoweblinks.in/ping/?p=126',0,'revision','',0),(128,1,'2022-01-31 12:38:00','2022-01-31 12:38:00','a.button.primary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n\n\n.wpcf7-form input[type=\"text\"], input[type=\"email\"], textarea {\n    width:100% !important;\n}\n\n.wpcf7 .wpcf7-text, .wpcf7 .wpcf7-email, .wpcf7 .wpcf7-textarea {\n  padding-left: 45px;\n}\n\n.wpcf7 p { position: relative; }\n.wpcf7 p .fa-user, .wpcf7 p .fa-envelope {\n  position: absolute;\n  color: #666666;\n  z-index: 100;\n  font-size: 18px;\n  top: 18%;\n  left: 3%;\n}\n\n.wpcf7 p .fa-pencil {\n  position: absolute;\n  color: #666666;\n  z-index: 100;\n  font-size: 18px;\n  top: 6%;\n  left: 3%;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/next-icon-btn.png);\n    background-size: 20px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 36px !important;\n    height: 36px;\n    top: 9px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-01-31 12:38:00','2022-01-31 12:38:00','',32,'http://demoweblinks.in/ping/?p=128',0,'revision','',0),(130,1,'2022-01-31 12:43:12','2022-01-31 12:43:12','a.button.primary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/next-icon-btn.png);\n    background-size: 20px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 36px !important;\n    height: 36px;\n    top: 9px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-01-31 12:43:12','2022-01-31 12:43:12','',32,'http://demoweblinks.in/ping/?p=130',0,'revision','',0),(132,1,'2022-01-31 12:44:26','2022-01-31 12:44:26','a.button.primary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/next-icon-btn.png);\n    background-size: 20px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 36px !important;\n    height: 36px;\n    top: 9px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n\n\n\n.input-container {\n  display: flex;\n  width: 100%;\n  margin-bottom: 15px;\n}\n\n/* Style the form icons */\n.icon {\n  padding: 10px;\n  background: dodgerblue;\n  color: white;\n  min-width: 50px;\n  text-align: center;\n}\n\n/* Style the input fields */\n.input-field {\n  width: 100%;\n  padding: 10px;\n  outline: none;\n}\n\n.input-field:focus {\n  border: 2px solid dodgerblue;\n}\n','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-01-31 12:44:26','2022-01-31 12:44:26','',32,'http://demoweblinks.in/ping/?p=132',0,'revision','',0),(134,1,'2022-01-31 12:50:47','2022-01-31 12:50:47','a.button.primary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/next-icon-btn.png);\n    background-size: 20px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 36px !important;\n    height: 36px;\n    top: 9px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n\n\n\n\n','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-01-31 12:50:47','2022-01-31 12:50:47','',32,'http://demoweblinks.in/ping/?p=134',0,'revision','',0),(135,1,'2022-01-31 12:52:13','2022-01-31 12:52:13','','png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane','','inherit','open','closed','','png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane','','','2022-01-31 12:52:13','2022-01-31 12:52:13','',0,'http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png',0,'attachment','image/png',0),(137,1,'2022-01-31 12:52:39','2022-01-31 12:52:39','a.button.primary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 20px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 36px !important;\n    height: 36px;\n    top: 9px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n\n\n\n\n','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-01-31 12:52:39','2022-01-31 12:52:39','',32,'http://demoweblinks.in/ping/?p=137',0,'revision','',0),(139,1,'2022-01-31 12:54:56','2022-01-31 12:54:56','a.button.primary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n\n\n\n\n','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-01-31 12:54:56','2022-01-31 12:54:56','',32,'http://demoweblinks.in/ping/?p=139',0,'revision','',0),(145,1,'2022-02-16 12:22:06','2022-02-16 12:22:06','a.button.primary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.button.primary:not(.is-outline){\n		background:linear-gradient(#8196f8, #8ddde3)!important;\n}\n\n\n\n','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-02-16 12:22:06','2022-02-16 12:22:06','',32,'http://demoweblinks.in/ping/?p=145',0,'revision','',0),(147,1,'2022-02-16 12:23:52','2022-02-16 12:23:52','a.button.primary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.button.primary:not(.is-outline){\n		background:linear-gradient(#8196f8, #8ddde3)!important;\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n\n\n','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-02-16 12:23:52','2022-02-16 12:23:52','',32,'http://demoweblinks.in/ping/?p=147',0,'revision','',0),(149,1,'2022-02-16 12:27:05','2022-02-16 12:27:05','a.button.primary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.button.primary:not(.is-outline){\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n\n\n','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-02-16 12:27:05','2022-02-16 12:27:05','',32,'http://demoweblinks.in/ping/?p=149',0,'revision','',0),(151,1,'2022-02-16 12:28:30','2022-02-16 12:28:30','a.button.primary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.button.primary:not(.is-outline){\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n.social-icons .button.icon:not(.is-outline){\n	background-color: currentColor !important;\n    border-color: currentColor !important;\n}\n\n\n','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-02-16 12:28:30','2022-02-16 12:28:30','',32,'http://demoweblinks.in/ping/?p=151',0,'revision','',0),(153,1,'2022-02-16 12:29:30','2022-02-16 12:29:30','a.button.primary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.scroll-to-bullets a, .featured-title, .label-new.menu-item > a:after, .nav-pagination > li > .current, .nav-pagination > li > span:hover, .nav-pagination > li > a:hover, .has-hover:hover .badge-outline .badge-inner, button[type=\"submit\"], .button.wc-forward:not(.checkout):not(.checkout-button), .button.submit-button, .button.primary:not(.is-outline), .featured-table .title, .is-outline:hover, .has-icon:hover .icon-label, .nav-dropdown-bold .nav-column li > a:hover, .nav-dropdown.nav-dropdown-bold > li > a:hover, .nav-dropdown-bold.dark .nav-column li > a:hover, .nav-dropdown.nav-dropdown-bold.dark > li > a:hover, .header-vertical-menu__opener, .is-outline:hover, .tagcloud a:hover, .grid-tools a, input[type=\'submit\']:not(.is-form), .box-badge:hover .box-text, input.button.alt, .nav-box > li > a:hover, .nav-box > li.active > a, .nav-pills > li.active > a, .current-dropdown .cart-icon strong, .cart-icon:hover strong, .nav-line-bottom > li > a:before, .nav-line-grow > li > a:before, .nav-line > li > a:before, .banner, .header-top, .slider-nav-circle .flickity-prev-next-button:hover svg, .slider-nav-circle .flickity-prev-next-button:hover .arrow, .primary.is-outline:hover, .button.primary:not(.is-outline), input[type=\'submit\'].primary, input[type=\'submit\'].primary, input[type=\'reset\'].button, input[type=\'button\'].primary, .badge-inner{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n.social-icons .button.icon:not(.is-outline){\n	background-color: currentColor !important;\n    border-color: currentColor !important;\n}\n\n\n','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-02-16 12:29:30','2022-02-16 12:29:30','',32,'http://demoweblinks.in/ping/?p=153',0,'revision','',0),(155,1,'2022-02-16 12:30:05','2022-02-16 12:30:05','a.button.primary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.button.primary:not(.is-outline){\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n.social-icons .button.icon:not(.is-outline){\n	background-color: currentColor !important;\n    border-color: currentColor !important;\n}\n\n\n','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-02-16 12:30:05','2022-02-16 12:30:05','',32,'http://demoweblinks.in/ping/?p=155',0,'revision','',0),(158,1,'2022-02-16 12:31:45','2022-02-16 12:31:45','a.button.primary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n\n\n','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-02-16 12:31:45','2022-02-16 12:31:45','',32,'http://demoweblinks.in/ping/?p=158',0,'revision','',0),(159,1,'2022-02-16 12:33:03','2022-02-16 12:33:03','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text text_align=\"left\"]\n\n<p>&nbsp;</p>\n<h2>Ping Network</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"27\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 >About us</h2>\n<p>We, PingNetwork is India’s largest studio MCN with channels catering to a range of infotainment genres such as Food, Fashion, Music, Technology, Gaming, Dance, News & a lot more. With over 180+ channels around the globe, we reach millions every month.<b style=\"color:red;\"> We are a certified partner of YouTube that offer assistance to publishers with Channel Management</b></p>\n[button text=\"Read More\" letter_case=\"lowercase\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Channel<br /> Management </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Us with Holding</br> Tax Rate</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Brand<br /> Collaboration </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Channel<br /> Strategy</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p> Flexible<br />Payment<br />Solutioin</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p>Training From<br /> Youtube &<br /> Learning Meterials</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p> Acess To <br /> Paladin Creator<br /> Dashboard</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"success\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(193, 193, 193)\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-02-16 12:33:03','2022-02-16 12:33:03','',6,'http://demoweblinks.in/ping/?p=159',0,'revision','',0),(160,1,'2022-02-16 12:33:23','2022-02-16 12:33:23','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text text_align=\"left\"]\n\n<p>&nbsp;</p>\n<h2>Ping Network</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"27\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 >About us</h2>\n<p>We, PingNetwork is India’s largest studio MCN with channels catering to a range of infotainment genres such as Food, Fashion, Music, Technology, Gaming, Dance, News & a lot more. With over 180+ channels around the globe, we reach millions every month.<b style=\"color:red;\"> We are a certified partner of YouTube that offer assistance to publishers with Channel Management</b></p>\n[button text=\"Read More\" letter_case=\"lowercase\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Channel<br /> Management </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Us with Holding</br> Tax Rate</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Brand<br /> Collaboration </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Channel<br /> Strategy</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p> Flexible<br />Payment<br />Solutioin</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p>Training From<br /> Youtube &<br /> Learning Meterials</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p> Acess To <br /> Paladin Creator<br /> Dashboard</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"success\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(193, 193, 193)\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-02-16 12:33:23','2022-02-16 12:33:23','',6,'http://demoweblinks.in/ping/?p=160',0,'revision','',0),(161,1,'2022-02-16 12:33:49','2022-02-16 12:33:49','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"equal\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text text_align=\"left\"]\n\n<p>&nbsp;</p>\n<h2>Ping Network</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"27\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 >About us</h2>\n<p>We, PingNetwork is India’s largest studio MCN with channels catering to a range of infotainment genres such as Food, Fashion, Music, Technology, Gaming, Dance, News & a lot more. With over 180+ channels around the globe, we reach millions every month.<b style=\"color:red;\"> We are a certified partner of YouTube that offer assistance to publishers with Channel Management</b></p>\n[button text=\"Read More\" letter_case=\"lowercase\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Channel<br /> Management </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Us with Holding</br> Tax Rate</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Brand<br /> Collaboration </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Channel<br /> Strategy</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p> Flexible<br />Payment<br />Solutioin</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p>Training From<br /> Youtube &<br /> Learning Meterials</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p> Acess To <br /> Paladin Creator<br /> Dashboard</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"success\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(193, 193, 193)\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-02-16 12:33:49','2022-02-16 12:33:49','',6,'http://demoweblinks.in/ping/?p=161',0,'revision','',0),(162,1,'2022-02-16 12:34:26','2022-02-16 12:34:26','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text text_align=\"left\"]\n\n<p>&nbsp;</p>\n<h2>Ping Network</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"27\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 >About us</h2>\n<p>We, PingNetwork is India’s largest studio MCN with channels catering to a range of infotainment genres such as Food, Fashion, Music, Technology, Gaming, Dance, News & a lot more. With over 180+ channels around the globe, we reach millions every month.<b style=\"color:red;\"> We are a certified partner of YouTube that offer assistance to publishers with Channel Management</b></p>\n[button text=\"Read More\" letter_case=\"lowercase\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Channel<br /> Management </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Us with Holding</br> Tax Rate</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Brand<br /> Collaboration </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Channel<br /> Strategy</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p> Flexible<br />Payment<br />Solutioin</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p>Training From<br /> Youtube &<br /> Learning Meterials</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p> Acess To <br /> Paladin Creator<br /> Dashboard</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"success\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(193, 193, 193)\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-02-16 12:34:26','2022-02-16 12:34:26','',6,'http://demoweblinks.in/ping/?p=162',0,'revision','',0),(163,1,'2022-02-16 12:35:08','2022-02-16 12:35:08','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"equal\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text text_align=\"left\"]\n\n<p>&nbsp;</p>\n<h2>Ping Network</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"27\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 >About us</h2>\n<p>We, PingNetwork is India’s largest studio MCN with channels catering to a range of infotainment genres such as Food, Fashion, Music, Technology, Gaming, Dance, News & a lot more. With over 180+ channels around the globe, we reach millions every month.<b style=\"color:red;\"> We are a certified partner of YouTube that offer assistance to publishers with Channel Management</b></p>\n[button text=\"Read More\" letter_case=\"lowercase\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Channel<br /> Management </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Us with Holding</br> Tax Rate</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Brand<br /> Collaboration </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Channel<br /> Strategy</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p> Flexible<br />Payment<br />Solutioin</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p>Training From<br /> Youtube &<br /> Learning Meterials</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p> Acess To <br /> Paladin Creator<br /> Dashboard</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"success\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(193, 193, 193)\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-02-16 12:35:08','2022-02-16 12:35:08','',6,'http://demoweblinks.in/ping/?p=163',0,'revision','',0),(164,1,'2022-02-16 12:36:12','2022-02-16 12:36:12','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text text_align=\"left\"]\n\n<p>&nbsp;</p>\n<h2>Ping Network</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"27\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 >About us</h2>\n<p>We, PingNetwork is India’s largest studio MCN with channels catering to a range of infotainment genres such as Food, Fashion, Music, Technology, Gaming, Dance, News & a lot more. With over 180+ channels around the globe, we reach millions every month.<b style=\"color:red;\"> We are a certified partner of YouTube that offer assistance to publishers with Channel Management</b></p>\n[button text=\"Read More\" letter_case=\"lowercase\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Channel<br /> Management </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Us with Holding</br> Tax Rate</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Brand<br /> Collaboration </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Channel<br /> Strategy</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p> Flexible<br />Payment<br />Solutioin</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p>Training From<br /> Youtube &<br /> Learning Meterials</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p> Acess To <br /> Paladin Creator<br /> Dashboard</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"success\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(193, 193, 193)\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-02-16 12:36:12','2022-02-16 12:36:12','',6,'http://demoweblinks.in/ping/?p=164',0,'revision','',0),(165,1,'2022-02-16 12:37:03','2022-02-16 12:37:03','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text text_align=\"left\"]\n\n<h1><b>Ping Network</b></h1>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"27\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 >About us</h2>\n<p>We, PingNetwork is India’s largest studio MCN with channels catering to a range of infotainment genres such as Food, Fashion, Music, Technology, Gaming, Dance, News & a lot more. With over 180+ channels around the globe, we reach millions every month.<b style=\"color:red;\"> We are a certified partner of YouTube that offer assistance to publishers with Channel Management</b></p>\n[button text=\"Read More\" letter_case=\"lowercase\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Channel<br /> Management </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Us with Holding</br> Tax Rate</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Brand<br /> Collaboration </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Channel<br /> Strategy</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p> Flexible<br />Payment<br />Solutioin</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p>Training From<br /> Youtube &<br /> Learning Meterials</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p> Acess To <br /> Paladin Creator<br /> Dashboard</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"success\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(193, 193, 193)\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-02-16 12:37:03','2022-02-16 12:37:03','',6,'http://demoweblinks.in/ping/?p=165',0,'revision','',0),(167,1,'2022-02-16 13:17:10','2022-02-16 13:17:10','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n\n\n','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-02-16 13:17:10','2022-02-16 13:17:10','',32,'http://demoweblinks.in/ping/?p=167',0,'revision','',0),(168,1,'2022-02-16 13:17:19','2022-02-16 13:17:19','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\"]\n\n<h1><b>Ping Network</b></h1>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"27\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 >About us</h2>\n<p>We, PingNetwork is India’s largest studio MCN with channels catering to a range of infotainment genres such as Food, Fashion, Music, Technology, Gaming, Dance, News & a lot more. With over 180+ channels around the globe, we reach millions every month.<b style=\"color:red;\"> We are a certified partner of YouTube that offer assistance to publishers with Channel Management</b></p>\n[button text=\"Read More\" letter_case=\"lowercase\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Channel<br /> Management </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Us with Holding</br> Tax Rate</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Brand<br /> Collaboration </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Channel<br /> Strategy</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p> Flexible<br />Payment<br />Solutioin</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p>Training From<br /> Youtube &<br /> Learning Meterials</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p> Acess To <br /> Paladin Creator<br /> Dashboard</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"success\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(193, 193, 193)\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-02-16 13:17:19','2022-02-16 13:17:19','',6,'http://demoweblinks.in/ping/?p=168',0,'revision','',0),(169,1,'2022-02-16 13:17:57','2022-02-16 13:17:57','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\"]\n\n<h1><b>Ping Network</b></h1>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"27\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 >About us</h2>\n<p>We, PingNetwork is India’s largest studio MCN with channels catering to a range of infotainment genres such as Food, Fashion, Music, Technology, Gaming, Dance, News & a lot more. With over 180+ channels around the globe, we reach millions every month.<b style=\"color:red;\"> We are a certified partner of YouTube that offer assistance to publishers with Channel Management</b></p>\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Channel<br /> Management </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Us with Holding</br> Tax Rate</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Brand<br /> Collaboration </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Channel<br /> Strategy</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p> Flexible<br />Payment<br />Solutioin</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p>Training From<br /> Youtube &<br /> Learning Meterials</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p> Acess To <br /> Paladin Creator<br /> Dashboard</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(193, 193, 193)\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-02-16 13:17:57','2022-02-16 13:17:57','',6,'http://demoweblinks.in/ping/?p=169',0,'revision','',0),(170,1,'2022-02-16 13:22:39','2022-02-16 13:22:39','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h1><b>Ping Network</b></h1>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"27\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We, PingNetwork is India’s largest studio MCN with channels catering to a range of infotainment genres such as Food, Fashion, Music, Technology, Gaming, Dance, News & a lot more. With over 180+ channels around the globe, we reach millions every month.<b style=\"color:red;\"> We are a certified partner of YouTube that offer assistance to publishers with Channel Management</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Channel<br /> Management </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Us with Holding</br> Tax Rate</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Brand<br /> Collaboration </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Channel<br /> Strategy</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p> Flexible<br />Payment<br />Solutioin</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p>Training From<br /> Youtube &<br /> Learning Meterials</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p> Acess To <br /> Paladin Creator<br /> Dashboard</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"team-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-02-16 13:22:39','2022-02-16 13:22:39','',6,'http://demoweblinks.in/ping/?p=170',0,'revision','',0),(172,1,'2022-02-16 13:23:01','2022-02-16 13:23:01','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n.team-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n}\n\n\n\n','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-02-16 13:23:01','2022-02-16 13:23:01','',32,'http://demoweblinks.in/ping/?p=172',0,'revision','',0),(175,1,'2022-02-17 03:55:45','2022-02-17 03:55:45','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h1><b>Ping Network</b></h1>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"27\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We, PingNetwork is India’s largest studio MCN with channels catering to a range of infotainment genres such as Food, Fashion, Music, Technology, Gaming, Dance, News & a lot more. With over 180+ channels around the globe, we reach millions every month.<b style=\"color:red;\"> We are a certified partner of YouTube that offer assistance to publishers with Channel Management</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Channel<br /> Management </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Us with Holding</br> Tax Rate</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Brand<br /> Collaboration </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Channel<br /> Strategy</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p> Flexible<br />Payment<br />Solutioin</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p>Training From<br /> Youtube &<br /> Learning Meterials</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p> Acess To <br /> Paladin Creator<br /> Dashboard</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"team-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-02-17 03:55:45','2022-02-17 03:55:45','',6,'http://demoweblinks.in/ping/?p=175',0,'revision','',0),(176,1,'2022-02-17 03:57:04','2022-02-17 03:57:04','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h1><b>Ping Network</b></h1>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"27\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We, PingNetwork is India’s largest studio MCN with channels catering to a range of infotainment genres such as Food, Fashion, Music, Technology, Gaming, Dance, News & a lot more. With over 180+ channels around the globe, we reach millions every month.<b style=\"color:red;\"> We are a certified partner of YouTube that offer assistance to publishers with Channel Management</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Channel<br /> Management </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Us with Holding</br> Tax Rate</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Brand<br /> Collaboration </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Channel<br /> Strategy</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p> Flexible<br />Payment<br />Solutioin</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p>Training From<br /> Youtube &<br /> Learning Meterials</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p> Acess To <br /> Paladin Creator<br /> Dashboard</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"team-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-02-17 03:57:04','2022-02-17 03:57:04','',6,'http://demoweblinks.in/ping/?p=176',0,'revision','',0),(178,1,'2022-02-17 03:59:01','2022-02-17 03:59:01','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n.service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n}\n\n\n\n','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-02-17 03:59:01','2022-02-17 03:59:01','',32,'http://demoweblinks.in/ping/?p=178',0,'revision','',0),(179,1,'2022-02-17 03:59:30','2022-02-17 03:59:30','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h1><b>Ping Network</b></h1>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"27\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We, PingNetwork is India’s largest studio MCN with channels catering to a range of infotainment genres such as Food, Fashion, Music, Technology, Gaming, Dance, News & a lot more. With over 180+ channels around the globe, we reach millions every month.<b style=\"color:red;\"> We are a certified partner of YouTube that offer assistance to publishers with Channel Management</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Channel<br /> Management </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Us with Holding</br> Tax Rate</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Brand<br /> Collaboration </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Channel<br /> Strategy</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p> Flexible<br />Payment<br />Solutioin</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p>Training From<br /> Youtube &<br /> Learning Meterials</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p> Acess To <br /> Paladin Creator<br /> Dashboard</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"#8196f8\" class=\"team-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-02-17 03:59:30','2022-02-17 03:59:30','',6,'http://demoweblinks.in/ping/?p=179',0,'revision','',0),(180,1,'2022-02-17 04:00:36','2022-02-17 04:00:36','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h1><b>Ping Network</b></h1>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"27\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We, PingNetwork is India’s largest studio MCN with channels catering to a range of infotainment genres such as Food, Fashion, Music, Technology, Gaming, Dance, News & a lot more. With over 180+ channels around the globe, we reach millions every month.<b style=\"color:red;\"> We are a certified partner of YouTube that offer assistance to publishers with Channel Management</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Channel<br /> Management </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Us with Holding</br> Tax Rate</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Brand<br /> Collaboration </p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p> Channel<br /> Strategy</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p> Flexible<br />Payment<br />Solutioin</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p>Training From<br /> Youtube &<br /> Learning Meterials</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n<p> Acess To <br /> Paladin Creator<br /> Dashboard</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"#8196f8\" class=\"team-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-02-17 04:00:36','2022-02-17 04:00:36','',6,'http://demoweblinks.in/ping/?p=180',0,'revision','',0),(181,1,'2022-02-17 04:04:51','2022-02-17 04:04:51','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h1><b>Ping Network</b></h1>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"27\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We, PingNetwork is India’s largest studio MCN with channels catering to a range of infotainment genres such as Food, Fashion, Music, Technology, Gaming, Dance, News & a lot more. With over 180+ channels around the globe, we reach millions every month.<b style=\"color:red;\"> We are a certified partner of YouTube that offer assistance to publishers with Channel Management</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Channel<br /> Management</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Us with Holding</br> Tax Rate</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> Brand<br /> Collaboration </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> Channel<br /> Strategy</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> Flexible<br />Payment<br />Solutioin</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Training From<br /> Youtube &<br /> Learning Meterials</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> Acess To <br /> Paladin Creator<br /> Dashboard</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"#8196f8\" class=\"team-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-02-17 04:04:51','2022-02-17 04:04:51','',6,'http://demoweblinks.in/ping/?p=181',0,'revision','',0),(182,1,'2022-02-17 04:07:09','2022-02-17 04:07:09','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h1><b>Ping Network</b></h1>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"27\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We, PingNetwork is India’s largest studio MCN with channels catering to a range of infotainment genres such as Food, Fashion, Music, Technology, Gaming, Dance, News & a lot more. With over 180+ channels around the globe, we reach millions every month.<b style=\"color:red;\"> We are a certified partner of YouTube that offer assistance to publishers with Channel Management</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Channel<br /> Management</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Us with Holding</br> Tax Rate</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Brand<br /> Collaboration</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Channel<br /> Strategy</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Flexible<br />Payment<br />Solutioin</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training From<br /> Youtube &<br /> Learning Meterials</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Acess To <br /> Paladin Creator<br /> Dashboard</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"#8196f8\" class=\"team-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-02-17 04:07:09','2022-02-17 04:07:09','',6,'http://demoweblinks.in/ping/?p=182',0,'revision','',0),(184,1,'2022-02-17 04:08:23','2022-02-17 04:08:23','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n.service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n}\n.home-button .know-more span{\n	color:black;\n}\n\n\n','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-02-17 04:08:23','2022-02-17 04:08:23','',32,'http://demoweblinks.in/ping/?p=184',0,'revision','',0),(186,1,'2022-02-17 04:08:50','2022-02-17 04:08:50','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n.service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-02-17 04:08:50','2022-02-17 04:08:50','',32,'http://demoweblinks.in/ping/?p=186',0,'revision','',0),(188,1,'2022-02-17 05:51:32','2022-02-17 05:51:32','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n.service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n}\n.home-button.know-more span{\n	color:black;\n}\n\ninput.button.has-spinner.home-buttons.input.lowercase.secondary.wpcf7-form-control.wpcf7-submit:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/next-icon-btn.png);\n    background-size: 20px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 36px !important;\n    height: 36px;\n    top: 9px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-02-17 05:51:32','2022-02-17 05:51:32','',32,'http://demoweblinks.in/ping/?p=188',0,'revision','',0),(190,1,'2022-02-17 05:52:59','2022-02-17 05:52:59','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n.service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n}\n.home-button.know-more span{\n	color:black;\n}\n\ninput[type=\'submit\']:not(.is-form):after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/next-icon-btn.png);\n    background-size: 20px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 36px !important;\n    height: 36px;\n    top: 9px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-02-17 05:52:59','2022-02-17 05:52:59','',32,'http://demoweblinks.in/ping/?p=190',0,'revision','',0),(191,1,'2022-02-17 05:58:56','2022-02-17 05:58:56','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h1><b>Ping Network</b></h1>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"27\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We, PingNetwork is India’s largest studio MCN with channels catering to a range of infotainment genres such as Food, Fashion, Music, Technology, Gaming, Dance, News & a lot more. With over 180+ channels around the globe, we reach millions every month.<b style=\"color:red;\"> We are a certified partner of YouTube that offer assistance to publishers with Channel Management</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Channel<br /> Management</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Us with Holding</br> Tax Rate</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Brand<br /> Collaboration</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Channel<br /> Strategy</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Flexible<br />Payment<br />Solutioin</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training From<br /> Youtube &<br /> Learning Meterials</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Acess To <br /> Paladin Creator<br /> Dashboard</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-02-17 05:58:56','2022-02-17 05:58:56','',6,'http://demoweblinks.in/ping/?p=191',0,'revision','',0),(193,1,'2022-02-17 07:03:41','2022-02-17 07:03:41','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n.service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 160px;\n    display: inline-grid;\n}\n','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-02-17 07:03:41','2022-02-17 07:03:41','',32,'http://demoweblinks.in/ping/?p=193',0,'revision','',0),(195,1,'2022-02-17 07:04:42','2022-02-17 07:04:42','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n.service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 160px;\n    display: inline-grid;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(https://i-wo.in/upsso/wp-content/uploads/2021/12/next-icon-btn.png);\n    background-size: 36px;\n    position: absolute !important;\n    top: 6px;\n    right: -2px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-02-17 07:04:42','2022-02-17 07:04:42','',32,'http://demoweblinks.in/ping/?p=195',0,'revision','',0),(197,1,'2022-02-17 07:05:19','2022-02-17 07:05:19','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n.service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 160px;\n    display: inline-grid;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/next-icon-btn.png);\n    background-size: 36px;\n    position: absolute !important;\n    top: 6px;\n    right: -2px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-02-17 07:05:19','2022-02-17 07:05:19','',32,'http://demoweblinks.in/ping/?p=197',0,'revision','',0),(199,1,'2022-02-17 07:06:42','2022-02-17 07:06:42','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n.service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 160px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 50px !important;\n    width: 170px;\n    padding: 5px 90px 5px 38px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/next-icon-btn.png);\n    background-size: 36px;\n    position: absolute !important;\n    top: 6px;\n    right: -2px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-02-17 07:06:42','2022-02-17 07:06:42','',32,'http://demoweblinks.in/ping/?p=199',0,'revision','',0),(201,1,'2022-02-17 07:07:32','2022-02-17 07:07:32','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n.service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 160px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 50px !important;\n    width: 170px;\n    padding: 5px 90px 5px 38px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/next-icon-btn.png);\n    background-size: 28px;\n    position: absolute !important;\n    top: 10px;\n    right: -2px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-02-17 07:07:32','2022-02-17 07:07:32','',32,'http://demoweblinks.in/ping/?p=201',0,'revision','',0),(202,1,'2022-02-17 07:09:39','2022-02-17 07:09:39','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"27\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We, PingNetwork is India’s largest studio MCN with channels catering to a range of infotainment genres such as Food, Fashion, Music, Technology, Gaming, Dance, News & a lot more. With over 180+ channels around the globe, we reach millions every month.<b style=\"color:red;\"> We are a certified partner of YouTube that offer assistance to publishers with Channel Management</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Channel<br /> Management</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Us with Holding</br> Tax Rate</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Brand<br /> Collaboration</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Channel<br /> Strategy</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Flexible<br />Payment<br />Solutioin</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training From<br /> Youtube &<br /> Learning Meterials</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Acess To <br /> Paladin Creator<br /> Dashboard</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-02-17 07:09:39','2022-02-17 07:09:39','',6,'http://demoweblinks.in/ping/?p=202',0,'revision','',0),(204,1,'2022-02-17 07:10:14','2022-02-17 07:10:14','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n.service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 160px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 50px !important;\n    width: 170px;\n    padding: 5px 90px 5px 38px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/next-icon-btn.png);\n    background-size: 28px;\n    position: absolute !important;\n    top: 10px;\n    right: -2px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-02-17 07:10:14','2022-02-17 07:10:14','',32,'http://demoweblinks.in/ping/?p=204',0,'revision','',0),(206,1,'2022-02-17 07:12:23','2022-02-17 07:12:23','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n.service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 160px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 50px !important;\n    width: 170px;\n    padding: 5px 90px 5px 38px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/next-icon-btn.png);\n    background-size: 28px;\n    position: absolute !important;\n    top: 10px;\n    right: -2px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-02-17 07:12:23','2022-02-17 07:12:23','',32,'http://demoweblinks.in/ping/?p=206',0,'revision','',0),(207,1,'2022-02-17 09:32:10','2022-02-17 09:32:10','','next-icon-btn (1) (1)','','inherit','open','closed','','next-icon-btn-1-1','','','2022-02-17 09:32:10','2022-02-17 09:32:10','',0,'http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png',0,'attachment','image/png',0),(209,1,'2022-02-17 09:33:03','2022-02-17 09:33:03','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n.service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 160px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 50px !important;\n    width: 170px;\n    padding: 5px 90px 5px 38px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 28px;\n    position: absolute !important;\n    top: 10px;\n    right: -2px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-02-17 09:33:03','2022-02-17 09:33:03','',32,'http://demoweblinks.in/ping/?p=209',0,'revision','',0),(211,1,'2022-02-17 09:35:29','2022-02-17 09:35:29','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"27\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We, PingNetwork is India’s largest studio MCN with channels catering to a range of infotainment genres such as Food, Fashion, Music, Technology, Gaming, Dance, News & a lot more. With over 180+ channels around the globe, we reach millions every month.<b style=\"color:red;\"> We are a certified partner of YouTube that offer assistance to publishers with Channel Management</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Channel<br /> Management</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Us with Holding</br> Tax Rate</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Brand<br /> Collaboration</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Channel<br /> Strategy</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Flexible<br />Payment<br />Solutioin</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training From<br /> Youtube &<br /> Learning Meterials</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Acess To <br /> Paladin Creator<br /> Dashboard</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-02-17 09:35:29','2022-02-17 09:35:29','',6,'http://demoweblinks.in/ping/?p=211',0,'revision','',0),(213,1,'2022-02-17 09:42:08','2022-02-17 09:42:08','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n.service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 160px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 50px !important;\n    width: 170px;\n    padding: 5px 90px 5px 38px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 28px;\n    position: absolute !important;\n    top: 10px;\n    right: -2px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n.flickity-slider{\n	left: 164px;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-02-17 09:42:08','2022-02-17 09:42:08','',32,'http://demoweblinks.in/ping/?p=213',0,'revision','',0),(215,1,'2022-02-17 09:42:34','2022-02-17 09:42:34','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n.service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 160px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 50px !important;\n    width: 170px;\n    padding: 5px 90px 5px 38px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 28px;\n    position: absolute !important;\n    top: 10px;\n    right: -2px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n.flickity-slider{\n	left: 164px!important;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-02-17 09:42:34','2022-02-17 09:42:34','',32,'http://demoweblinks.in/ping/?p=215',0,'revision','',0),(216,1,'2022-02-17 09:43:10','2022-02-17 09:43:10','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"27\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We, PingNetwork is India’s largest studio MCN with channels catering to a range of infotainment genres such as Food, Fashion, Music, Technology, Gaming, Dance, News & a lot more. With over 180+ channels around the globe, we reach millions every month.<b style=\"color:red;\"> We are a certified partner of YouTube that offer assistance to publishers with Channel Management</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Channel<br /> Management</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Us with Holding</br> Tax Rate</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Brand<br /> Collaboration</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Channel<br /> Strategy</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Flexible<br />Payment<br />Solutioin</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training From<br /> Youtube &<br /> Learning Meterials</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Acess To <br /> Paladin Creator<br /> Dashboard</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" class=\"logo-slider\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-02-17 09:43:10','2022-02-17 09:43:10','',6,'http://demoweblinks.in/ping/?p=216',0,'revision','',0),(218,1,'2022-02-17 09:43:29','2022-02-17 09:43:29','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n.service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 160px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 50px !important;\n    width: 170px;\n    padding: 5px 90px 5px 38px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 28px;\n    position: absolute !important;\n    top: 10px;\n    right: -2px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n.logo-slider .flickity-slider{\n	left: 164px!important;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-02-17 09:43:29','2022-02-17 09:43:29','',32,'http://demoweblinks.in/ping/?p=218',0,'revision','',0),(220,1,'2022-02-17 09:45:59','2022-02-17 09:45:59','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n.service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 160px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 50px !important;\n    width: 170px;\n    padding: 5px 90px 5px 38px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 28px;\n    position: absolute !important;\n    top: 10px;\n    right: -2px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n.logo-slider .flickity-slider{\n	left: 164px!important;\n}\n@media only screen and (max-width: 1024)   {\n	\n	.logo-slider .flickity-slider{\n	left: 164px!important;\n}\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-02-17 09:45:59','2022-02-17 09:45:59','',32,'http://demoweblinks.in/ping/?p=220',0,'revision','',0),(222,1,'2022-02-17 09:46:22','2022-02-17 09:46:22','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n.service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 160px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 50px !important;\n    width: 170px;\n    padding: 5px 90px 5px 38px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 28px;\n    position: absolute !important;\n    top: 10px;\n    right: -2px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n.logo-slider .flickity-slider{\n	left: 164px!important;\n}\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 164px!important;\n}\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-02-17 09:46:22','2022-02-17 09:46:22','',32,'http://demoweblinks.in/ping/?p=222',0,'revision','',0),(224,1,'2022-02-17 09:46:49','2022-02-17 09:46:49','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n.service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 160px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 50px !important;\n    width: 170px;\n    padding: 5px 90px 5px 38px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 28px;\n    position: absolute !important;\n    top: 10px;\n    right: -2px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n.logo-slider .flickity-slider{\n	left: 164px!important;\n}\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-02-17 09:46:49','2022-02-17 09:46:49','',32,'http://demoweblinks.in/ping/?p=224',0,'revision','',0),(226,1,'2022-02-17 11:39:20','2022-02-17 11:39:20','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"27\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We, PingNetwork is India’s largest studio MCN with channels catering to a range of infotainment genres such as Food, Fashion, Music, Technology, Gaming, Dance, News & a lot more. With over 180+ channels around the globe, we reach millions every month.<b style=\"color:red;\"> We are a certified partner of YouTube that offer assistance to publishers with Channel Management</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Channel<br /> Management</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Us with Holding</br> Tax Rate</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Brand<br /> Collaboration</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Channel<br /> Strategy</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Flexible<br />Payment<br />Solutioin</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training From<br /> Youtube &<br /> Learning Meterials</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Acess To <br /> Paladin Creator<br /> Dashboard</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" class=\"logo-slider\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-02-17 11:39:20','2022-02-17 11:39:20','',6,'http://demoweblinks.in/ping/?p=226',0,'revision','',0),(227,1,'2022-02-17 11:40:37','2022-02-17 11:40:37','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"27\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We, PingNetwork is India’s largest studio MCN with channels catering to a range of infotainment genres such as Food, Fashion, Music, Technology, Gaming, Dance, News & a lot more. With over 180+ channels around the globe, we reach millions every month.<b style=\"color:red;\"> We are a certified partner of YouTube that offer assistance to publishers with Channel Management</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Channel<br /> Management</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Us with Holding</br> Tax Rate</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Brand<br /> Collaboration</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Channel<br /> Strategy</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Flexible<br />Payment<br />Solutioin</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training From<br /> Youtube &<br /> Learning Meterials</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Acess To <br /> Paladin Creator<br /> Dashboard</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" class=\"logo-slider\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-02-17 11:40:37','2022-02-17 11:40:37','',6,'http://demoweblinks.in/ping/?p=227',0,'revision','',0),(228,1,'2022-02-18 03:40:02','2022-02-18 03:40:02','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"27\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"small\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We, PingNetwork is India’s largest studio MCN with channels catering to a range of infotainment genres such as Food, Fashion, Music, Technology, Gaming, Dance, News & a lot more. With over 180+ channels around the globe, we reach millions every month.<b style=\"color:red;\"> We are a certified partner of YouTube that offer assistance to publishers with Channel Management</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Channel<br /> Management</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Us with Holding</br> Tax Rate</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Brand<br /> Collaboration</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Channel<br /> Strategy</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Flexible<br />Payment<br />Solutioin</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training From<br /> Youtube &<br /> Learning Meterials</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Acess To <br /> Paladin Creator<br /> Dashboard</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" class=\"logo-slider\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-02-18 03:40:02','2022-02-18 03:40:02','',6,'http://demoweblinks.in/ping/?p=228',0,'revision','',0),(229,1,'2022-02-18 03:40:34','2022-02-18 03:40:34','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"27\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"small\" width=\"custom\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We, PingNetwork is India’s largest studio MCN with channels catering to a range of infotainment genres such as Food, Fashion, Music, Technology, Gaming, Dance, News & a lot more. With over 180+ channels around the globe, we reach millions every month.<b style=\"color:red;\"> We are a certified partner of YouTube that offer assistance to publishers with Channel Management</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Channel<br /> Management</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Us with Holding</br> Tax Rate</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Brand<br /> Collaboration</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Channel<br /> Strategy</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Flexible<br />Payment<br />Solutioin</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training From<br /> Youtube &<br /> Learning Meterials</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Acess To <br /> Paladin Creator<br /> Dashboard</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" class=\"logo-slider\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-02-18 03:40:34','2022-02-18 03:40:34','',6,'http://demoweblinks.in/ping/?p=229',0,'revision','',0),(230,1,'2022-02-18 03:41:38','2022-02-18 03:41:38','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"27\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"small\" width=\"custom\" custom_width=\"1140px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We, PingNetwork is India’s largest studio MCN with channels catering to a range of infotainment genres such as Food, Fashion, Music, Technology, Gaming, Dance, News & a lot more. With over 180+ channels around the globe, we reach millions every month.<b style=\"color:red;\"> We are a certified partner of YouTube that offer assistance to publishers with Channel Management</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Channel<br /> Management</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Us with Holding</br> Tax Rate</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Brand<br /> Collaboration</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Channel<br /> Strategy</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Flexible<br />Payment<br />Solutioin</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training From<br /> Youtube &<br /> Learning Meterials</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Acess To <br /> Paladin Creator<br /> Dashboard</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" class=\"logo-slider\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-02-18 03:41:38','2022-02-18 03:41:38','',6,'http://demoweblinks.in/ping/?p=230',0,'revision','',0),(232,1,'2022-02-18 03:43:18','2022-02-18 03:43:18','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"27\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"small\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We, PingNetwork is India’s largest studio MCN with channels catering to a range of infotainment genres such as Food, Fashion, Music, Technology, Gaming, Dance, News & a lot more. With over 180+ channels around the globe, we reach millions every month.<b style=\"color:red;\"> We are a certified partner of YouTube that offer assistance to publishers with Channel Management</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Channel<br /> Management</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Us with Holding</br> Tax Rate</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Brand<br /> Collaboration</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Channel<br /> Strategy</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Flexible<br />Payment<br />Solutioin</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training From<br /> Youtube &<br /> Learning Meterials</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Acess To <br /> Paladin Creator<br /> Dashboard</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" class=\"logo-slider\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-02-18 03:43:18','2022-02-18 03:43:18','',6,'http://demoweblinks.in/ping/?p=232',0,'revision','',0),(233,1,'2022-02-18 03:43:38','2022-02-18 03:43:38','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"27\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We, PingNetwork is India’s largest studio MCN with channels catering to a range of infotainment genres such as Food, Fashion, Music, Technology, Gaming, Dance, News & a lot more. With over 180+ channels around the globe, we reach millions every month.<b style=\"color:red;\"> We are a certified partner of YouTube that offer assistance to publishers with Channel Management</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Channel<br /> Management</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Us with Holding</br> Tax Rate</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Brand<br /> Collaboration</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Channel<br /> Strategy</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Flexible<br />Payment<br />Solutioin</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training From<br /> Youtube &<br /> Learning Meterials</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Acess To <br /> Paladin Creator<br /> Dashboard</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" class=\"logo-slider\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-02-18 03:43:38','2022-02-18 03:43:38','',6,'http://demoweblinks.in/ping/?p=233',0,'revision','',0),(235,1,'2022-02-21 04:08:01','2022-02-21 04:08:01','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n.service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 160px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 50px !important;\n    width: 170px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 28px;\n    position: absolute !important;\n    top: 10px;\n    right: -2px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n.logo-slider .flickity-slider{\n	left: 164px!important;\n}\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-02-21 04:08:01','2022-02-21 04:08:01','',32,'http://demoweblinks.in/ping/?p=235',0,'revision','',0),(237,1,'2022-02-21 04:08:48','2022-02-21 04:08:48','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n.service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 130px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 50px !important;\n    width: 170px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 28px;\n    position: absolute !important;\n    top: 10px;\n    right: -2px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n.logo-slider .flickity-slider{\n	left: 164px!important;\n}\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-02-21 04:08:48','2022-02-21 04:08:48','',32,'http://demoweblinks.in/ping/?p=237',0,'revision','',0),(239,1,'2022-02-21 04:09:20','2022-02-21 04:09:20','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n.service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 130px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 50px !important;\n    width: 135px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 28px;\n    position: absolute !important;\n    top: 10px;\n    right: -2px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n.logo-slider .flickity-slider{\n	left: 164px!important;\n}\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-02-21 04:09:20','2022-02-21 04:09:20','',32,'http://demoweblinks.in/ping/?p=239',0,'revision','',0),(241,1,'2022-02-21 04:10:25','2022-02-21 04:10:25','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n.service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 130px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 50px !important;\n    width: 135px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 26px;\n    position: absolute !important;\n    top: 7px;\n    right: -2px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n.logo-slider .flickity-slider{\n	left: 164px!important;\n}\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-02-21 04:10:25','2022-02-21 04:10:25','',32,'http://demoweblinks.in/ping/?p=241',0,'revision','',0),(243,1,'2022-02-21 04:12:43','2022-02-21 04:12:43','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n.service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 50px !important;\n    width: 130px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 26px;\n    position: absolute !important;\n    top: 7px;\n    right: -2px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n.logo-slider .flickity-slider{\n	left: 164px!important;\n}\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-02-21 04:12:43','2022-02-21 04:12:43','',32,'http://demoweblinks.in/ping/?p=243',0,'revision','',0),(245,1,'2022-02-21 04:13:44','2022-02-21 04:13:44','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n.service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 50px !important;\n    width: 130px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: -2px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n.logo-slider .flickity-slider{\n	left: 164px!important;\n}\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-02-21 04:13:44','2022-02-21 04:13:44','',32,'http://demoweblinks.in/ping/?p=245',0,'revision','',0),(247,1,'2022-02-21 04:15:05','2022-02-21 04:15:05','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n.service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 50px !important;\n    width: 130px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n.logo-slider .flickity-slider{\n	left: 164px!important;\n}\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-02-21 04:15:05','2022-02-21 04:15:05','',32,'http://demoweblinks.in/ping/?p=247',0,'revision','',0),(249,1,'2022-02-21 04:16:06','2022-02-21 04:16:06','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n.service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n.logo-slider .flickity-slider{\n	left: 164px!important;\n}\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-02-21 04:16:06','2022-02-21 04:16:06','',32,'http://demoweblinks.in/ping/?p=249',0,'revision','',0),(251,1,'2022-02-21 04:17:33','2022-02-21 04:17:33','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n.service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n.logo-slider .flickity-slider{\n	left: 164px!important;\n}\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1{\n	font-size:2.7em;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-02-21 04:17:33','2022-02-21 04:17:33','',32,'http://demoweblinks.in/ping/?p=251',0,'revision','',0),(253,1,'2022-02-21 04:18:04','2022-02-21 04:18:04','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n.service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n.logo-slider .flickity-slider{\n	left: 164px!important;\n}\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-02-21 04:18:04','2022-02-21 04:18:04','',32,'http://demoweblinks.in/ping/?p=253',0,'revision','',0),(257,1,'2022-02-21 07:50:46','2022-02-21 07:50:46','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n.service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n.logo-slider .flickity-slider{\n	left: 164px!important;\n}\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-02-21 07:50:46','2022-02-21 07:50:46','',32,'http://demoweblinks.in/ping/?p=257',0,'revision','',0),(259,1,'2022-02-28 04:09:29','2022-02-28 04:09:29','','Ping Banner-02','','inherit','open','closed','','ping-banner-02','','','2022-02-28 04:09:29','2022-02-28 04:09:29','',0,'http://demoweblinks.in/ping/wp-content/uploads/2022/02/Ping-Banner-02.jpg',0,'attachment','image/jpeg',0),(260,1,'2022-02-28 04:11:28','2022-02-28 04:11:28','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We, PingNetwork is India’s largest studio MCN with channels catering to a range of infotainment genres such as Food, Fashion, Music, Technology, Gaming, Dance, News & a lot more. With over 180+ channels around the globe, we reach millions every month.<b style=\"color:red;\"> We are a certified partner of YouTube that offer assistance to publishers with Channel Management</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Channel<br /> Management</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Us with Holding</br> Tax Rate</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Brand<br /> Collaboration</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Channel<br /> Strategy</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Flexible<br />Payment<br />Solutioin</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training From<br /> Youtube &<br /> Learning Meterials</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"60\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Acess To <br /> Paladin Creator<br /> Dashboard</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" class=\"logo-slider\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-02-28 04:11:28','2022-02-28 04:11:28','',6,'http://demoweblinks.in/ping/?p=260',0,'revision','',0),(261,1,'2022-02-28 04:16:37','2022-02-28 04:16:37','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We, PingNetwork is India’s largest studio MCN with channels catering to a range of infotainment genres such as Food, Fashion, Music, Technology, Gaming, Dance, News & a lot more. With over 180+ channels around the globe, we reach millions every month.<b style=\"color:red;\"> We are a certified partner of YouTube that offer assistance to publishers with Channel Management</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Channel<br /> Management</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Us with Holding</br> Tax Rate</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Brand<br /> Collaboration</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Channel<br /> Strategy</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Flexible<br />Payment<br />Solutioin</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training From<br /> Youtube &<br /> Learning Meterials</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Acess To <br /> Paladin Creator<br /> Dashboard</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Channel<br /> Strategy</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" class=\"logo-slider\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-02-28 04:16:37','2022-02-28 04:16:37','',6,'http://demoweblinks.in/ping/?p=261',0,'revision','',0),(263,1,'2022-02-28 05:16:29','2022-02-28 05:16:29','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n.service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n.logo-slider .flickity-slider{\n	left: 164px!important;\n}\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-02-28 05:16:29','2022-02-28 05:16:29','',32,'http://demoweblinks.in/ping/?p=263',0,'revision','',0),(265,1,'2022-02-28 05:17:49','2022-02-28 05:17:49','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n.service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n.logo-slider .flickity-slider{\n	left: 164px!important;\n}\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-02-28 05:17:49','2022-02-28 05:17:49','',32,'http://demoweblinks.in/ping/?p=265',0,'revision','',0),(267,1,'2022-02-28 05:18:27','2022-02-28 05:18:27','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n.service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n.logo-slider .flickity-slider{\n	left: 164px!important;\n}\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-02-28 05:18:27','2022-02-28 05:18:27','',32,'http://demoweblinks.in/ping/?p=267',0,'revision','',0),(268,1,'2022-02-28 05:50:05','2022-02-28 05:50:05','[section padding=\"0px\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[follow style=\"fill\" align=\"center\" instagram=\"#\" twitter=\"#\" linkedin=\"#\"]\n\n\n[/col]\n\n[/row]\n\n[/section]','Footer','','inherit','closed','closed','','45-revision-v1','','','2022-02-28 05:50:05','2022-02-28 05:50:05','',45,'http://demoweblinks.in/ping/?p=268',0,'revision','',0),(269,1,'2022-02-28 05:52:49','2022-02-28 05:52:49','[section padding=\"0px\"]\n\n[row]\n\n[col span__sm=\"12\" padding=\"0px 0px 0 0px\"]\n\n[follow style=\"fill\" align=\"center\" instagram=\"#\" twitter=\"#\" linkedin=\"#\"]\n\n\n[/col]\n\n[/row]\n\n[/section]','Footer','','inherit','closed','closed','','45-revision-v1','','','2022-02-28 05:52:49','2022-02-28 05:52:49','',45,'http://demoweblinks.in/ping/?p=269',0,'revision','',0),(271,1,'2022-03-15 11:49:38','2022-03-15 11:49:38','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We, PingNetwork is India’s largest studio MCN with channels catering to a range of infotainment genres such as Food, Fashion, Music, Technology, Gaming, Dance, News & a lot more. With over 180+ channels around the globe, we reach millions every month.<b style=\"color:red;\"> We are a certified partner of YouTube that offer assistance to publishers with Channel Management</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Channel<br /> Management</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Us with Holding</br> Tax Rate</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Brand<br /> Collaboration</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Channel<br /> Strategy</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Flexible<br />Payment<br />Solutioin</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training From<br /> Youtube &<br /> Learning Meterials</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Acess To <br /> Paladin Creator<br /> Dashboard</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Channel<br /> Strategy</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" class=\"logo-slider\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[ux_html]\n\n<script src=\"https://apis.google.com/js/platform.js\"></script>\n\n<div class=\"g-ytsubscribe\" data-channelid=\"UCLbdVvreihwZRL6kwuEUYsA\" data-layout=\"full\" data-theme=\"dark\" data-count=\"default\"></div>\n[/ux_html]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-03-15 11:49:38','2022-03-15 11:49:38','',6,'http://demoweblinks.in/ping/?p=271',0,'revision','',0),(273,1,'2022-04-12 11:39:50','2022-04-12 11:39:50','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We, PingNetwork is India’s largest studio MCN with channels catering to a range of infotainment genres such as Food, Fashion, Music, Technology, Gaming, Dance, News & a lot more. With over 180+ channels around the globe, we reach millions every month.<b style=\"color:red;\"> We are a certified partner of YouTube that offer assistance to publishers with Channel Management</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" icon_style=\"small\" youtube=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>TheStupendousWave</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Us with Holding</br> Tax Rate</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Brand<br /> Collaboration</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Channel<br /> Strategy</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Flexible<br />Payment<br />Solutioin</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training From<br /> Youtube &<br /> Learning Meterials</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Acess To <br /> Paladin Creator<br /> Dashboard</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Channel<br /> Strategy</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" class=\"logo-slider\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[ux_html]\n\n<script src=\"https://apis.google.com/js/platform.js\"></script>\n\n<div class=\"g-ytsubscribe\" data-channelid=\"UCLbdVvreihwZRL6kwuEUYsA\" data-layout=\"full\" data-theme=\"dark\" data-count=\"default\"></div>\n[/ux_html]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-12 11:39:50','2022-04-12 11:39:50','',6,'http://demoweblinks.in/ping/?p=273',0,'revision','',0),(274,1,'2022-04-12 11:43:29','2022-04-12 11:43:29','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We, PingNetwork is India’s largest studio MCN with channels catering to a range of infotainment genres such as Food, Fashion, Music, Technology, Gaming, Dance, News & a lot more. With over 180+ channels around the globe, we reach millions every month.<b style=\"color:red;\"> We are a certified partner of YouTube that offer assistance to publishers with Channel Management</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>TheStupendousWave</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Us with Holding</br> Tax Rate</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Brand<br /> Collaboration</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Channel<br /> Strategy</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Flexible<br />Payment<br />Solutioin</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training From<br /> Youtube &<br /> Learning Meterials</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Acess To <br /> Paladin Creator<br /> Dashboard</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Channel<br /> Strategy</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" class=\"logo-slider\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[ux_html]\n\n<script src=\"https://apis.google.com/js/platform.js\"></script>\n\n<div class=\"g-ytsubscribe\" data-channelid=\"UCLbdVvreihwZRL6kwuEUYsA\" data-layout=\"full\" data-theme=\"dark\" data-count=\"default\"></div>\n[/ux_html]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-12 11:43:29','2022-04-12 11:43:29','',6,'http://demoweblinks.in/ping/?p=274',0,'revision','',0),(275,1,'2022-04-12 11:43:49','2022-04-12 11:43:49','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We, PingNetwork is India’s largest studio MCN with channels catering to a range of infotainment genres such as Food, Fashion, Music, Technology, Gaming, Dance, News & a lot more. With over 180+ channels around the globe, we reach millions every month.<b style=\"color:red;\"> We are a certified partner of YouTube that offer assistance to publishers with Channel Management</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Us with Holding</br> Tax Rate</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Brand<br /> Collaboration</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Channel<br /> Strategy</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Flexible<br />Payment<br />Solutioin</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training From<br /> Youtube &<br /> Learning Meterials</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Acess To <br /> Paladin Creator<br /> Dashboard</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Channel<br /> Strategy</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" class=\"logo-slider\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[ux_html]\n\n<script src=\"https://apis.google.com/js/platform.js\"></script>\n\n<div class=\"g-ytsubscribe\" data-channelid=\"UCLbdVvreihwZRL6kwuEUYsA\" data-layout=\"full\" data-theme=\"dark\" data-count=\"default\"></div>\n[/ux_html]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-12 11:43:49','2022-04-12 11:43:49','',6,'http://demoweblinks.in/ping/?p=275',0,'revision','',0),(276,1,'2022-04-12 11:44:58','2022-04-12 11:44:58','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We, PingNetwork is India’s largest studio MCN with channels catering to a range of infotainment genres such as Food, Fashion, Music, Technology, Gaming, Dance, News & a lot more. With over 180+ channels around the globe, we reach millions every month.<b style=\"color:red;\"> We are a certified partner of YouTube that offer assistance to publishers with Channel Management</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Gharcha Swaad</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Brand<br /> Collaboration</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Channel<br /> Strategy</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Flexible<br />Payment<br />Solutioin</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training From<br /> Youtube &<br /> Learning Meterials</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Acess To <br /> Paladin Creator<br /> Dashboard</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Channel<br /> Strategy</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" class=\"logo-slider\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[ux_html]\n\n<script src=\"https://apis.google.com/js/platform.js\"></script>\n\n<div class=\"g-ytsubscribe\" data-channelid=\"UCLbdVvreihwZRL6kwuEUYsA\" data-layout=\"full\" data-theme=\"dark\" data-count=\"default\"></div>\n[/ux_html]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-12 11:44:58','2022-04-12 11:44:58','',6,'http://demoweblinks.in/ping/?p=276',0,'revision','',0),(277,1,'2022-04-12 11:45:43','2022-04-12 11:45:43','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We, PingNetwork is India’s largest studio MCN with channels catering to a range of infotainment genres such as Food, Fashion, Music, Technology, Gaming, Dance, News & a lot more. With over 180+ channels around the globe, we reach millions every month.<b style=\"color:red;\"> We are a certified partner of YouTube that offer assistance to publishers with Channel Management</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Gharcha Swaad</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> KabitasLifeStyle</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Channel<br /> Strategy</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Flexible<br />Payment<br />Solutioin</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training From<br /> Youtube &<br /> Learning Meterials</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Acess To <br /> Paladin Creator<br /> Dashboard</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Channel<br /> Strategy</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" class=\"logo-slider\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[ux_html]\n\n<script src=\"https://apis.google.com/js/platform.js\"></script>\n\n<div class=\"g-ytsubscribe\" data-channelid=\"UCLbdVvreihwZRL6kwuEUYsA\" data-layout=\"full\" data-theme=\"dark\" data-count=\"default\"></div>\n[/ux_html]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-12 11:45:43','2022-04-12 11:45:43','',6,'http://demoweblinks.in/ping/?p=277',0,'revision','',0),(278,1,'2022-04-12 11:46:48','2022-04-12 11:46:48','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We, PingNetwork is India’s largest studio MCN with channels catering to a range of infotainment genres such as Food, Fashion, Music, Technology, Gaming, Dance, News & a lot more. With over 180+ channels around the globe, we reach millions every month.<b style=\"color:red;\"> We are a certified partner of YouTube that offer assistance to publishers with Channel Management</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Gharcha Swaad</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> KabitasLifeStyle</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <bKabitasKitchen Quick Recipes</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Flexible<br />Payment<br />Solutioin</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training From<br /> Youtube &<br /> Learning Meterials</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Acess To <br /> Paladin Creator<br /> Dashboard</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Channel<br /> Strategy</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" class=\"logo-slider\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[ux_html]\n\n<script src=\"https://apis.google.com/js/platform.js\"></script>\n\n<div class=\"g-ytsubscribe\" data-channelid=\"UCLbdVvreihwZRL6kwuEUYsA\" data-layout=\"full\" data-theme=\"dark\" data-count=\"default\"></div>\n[/ux_html]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-12 11:46:48','2022-04-12 11:46:48','',6,'http://demoweblinks.in/ping/?p=278',0,'revision','',0),(279,1,'2022-04-12 11:47:29','2022-04-12 11:47:29','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We, PingNetwork is India’s largest studio MCN with channels catering to a range of infotainment genres such as Food, Fashion, Music, Technology, Gaming, Dance, News & a lot more. With over 180+ channels around the globe, we reach millions every month.<b style=\"color:red;\"> We are a certified partner of YouTube that offer assistance to publishers with Channel Management</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Gharcha Swaad</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> KabitasLifeStyle</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <bKabitasKitchen Quick Recipes</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training From<br /> Youtube &<br /> Learning Meterials</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Acess To <br /> Paladin Creator<br /> Dashboard</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Channel<br /> Strategy</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" class=\"logo-slider\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[ux_html]\n\n<script src=\"https://apis.google.com/js/platform.js\"></script>\n\n<div class=\"g-ytsubscribe\" data-channelid=\"UCLbdVvreihwZRL6kwuEUYsA\" data-layout=\"full\" data-theme=\"dark\" data-count=\"default\"></div>\n[/ux_html]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-12 11:47:29','2022-04-12 11:47:29','',6,'http://demoweblinks.in/ping/?p=279',0,'revision','',0),(280,1,'2022-04-12 11:48:23','2022-04-12 11:48:23','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We, PingNetwork is India’s largest studio MCN with channels catering to a range of infotainment genres such as Food, Fashion, Music, Technology, Gaming, Dance, News & a lot more. With over 180+ channels around the globe, we reach millions every month.<b style=\"color:red;\"> We are a certified partner of YouTube that offer assistance to publishers with Channel Management</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Gharcha Swaad</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> KabitasLifeStyle</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training From<br /> Youtube &<br /> Learning Meterials</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Acess To <br /> Paladin Creator<br /> Dashboard</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Channel<br /> Strategy</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" class=\"logo-slider\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[ux_html]\n\n<script src=\"https://apis.google.com/js/platform.js\"></script>\n\n<div class=\"g-ytsubscribe\" data-channelid=\"UCLbdVvreihwZRL6kwuEUYsA\" data-layout=\"full\" data-theme=\"dark\" data-count=\"default\"></div>\n[/ux_html]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-12 11:48:23','2022-04-12 11:48:23','',6,'http://demoweblinks.in/ping/?p=280',0,'revision','',0),(281,1,'2022-04-12 11:49:13','2022-04-12 11:49:13','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We, PingNetwork is India’s largest studio MCN with channels catering to a range of infotainment genres such as Food, Fashion, Music, Technology, Gaming, Dance, News & a lot more. With over 180+ channels around the globe, we reach millions every month.<b style=\"color:red;\"> We are a certified partner of YouTube that offer assistance to publishers with Channel Management</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Gharcha Swaad</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> KabitasLifeStyle</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Machinery Magazine</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Acess To <br /> Paladin Creator<br /> Dashboard</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Channel<br /> Strategy</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" class=\"logo-slider\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[ux_html]\n\n<script src=\"https://apis.google.com/js/platform.js\"></script>\n\n<div class=\"g-ytsubscribe\" data-channelid=\"UCLbdVvreihwZRL6kwuEUYsA\" data-layout=\"full\" data-theme=\"dark\" data-count=\"default\"></div>\n[/ux_html]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-12 11:49:13','2022-04-12 11:49:13','',6,'http://demoweblinks.in/ping/?p=281',0,'revision','',0),(282,1,'2022-04-12 11:49:46','2022-04-12 11:49:46','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We, PingNetwork is India’s largest studio MCN with channels catering to a range of infotainment genres such as Food, Fashion, Music, Technology, Gaming, Dance, News & a lot more. With over 180+ channels around the globe, we reach millions every month.<b style=\"color:red;\"> We are a certified partner of YouTube that offer assistance to publishers with Channel Management</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Gharcha Swaad</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> KabitasLifeStyle</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Machinery Magazine</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Hindi Khabar</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Channel<br /> Strategy</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" class=\"logo-slider\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[ux_html]\n\n<script src=\"https://apis.google.com/js/platform.js\"></script>\n\n<div class=\"g-ytsubscribe\" data-channelid=\"UCLbdVvreihwZRL6kwuEUYsA\" data-layout=\"full\" data-theme=\"dark\" data-count=\"default\"></div>\n[/ux_html]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-12 11:49:46','2022-04-12 11:49:46','',6,'http://demoweblinks.in/ping/?p=282',0,'revision','',0),(283,1,'2022-04-12 11:50:37','2022-04-12 11:50:37','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We, PingNetwork is India’s largest studio MCN with channels catering to a range of infotainment genres such as Food, Fashion, Music, Technology, Gaming, Dance, News & a lot more. With over 180+ channels around the globe, we reach millions every month.<b style=\"color:red;\"> We are a certified partner of YouTube that offer assistance to publishers with Channel Management</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Gharcha Swaad</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> KabitasLifeStyle</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Machinery Magazine</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Hindi Khabar</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Wrestle India</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" class=\"logo-slider\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[ux_html]\n\n<script src=\"https://apis.google.com/js/platform.js\"></script>\n\n<div class=\"g-ytsubscribe\" data-channelid=\"UCLbdVvreihwZRL6kwuEUYsA\" data-layout=\"full\" data-theme=\"dark\" data-count=\"default\"></div>\n[/ux_html]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-12 11:50:37','2022-04-12 11:50:37','',6,'http://demoweblinks.in/ping/?p=283',0,'revision','',0),(284,1,'2022-04-12 11:56:12','2022-04-12 11:56:12','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Gharcha Swaad</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> KabitasLifeStyle</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Machinery Magazine</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Hindi Khabar</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Wrestle India</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" class=\"logo-slider\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[ux_html]\n\n<script src=\"https://apis.google.com/js/platform.js\"></script>\n\n<div class=\"g-ytsubscribe\" data-channelid=\"UCLbdVvreihwZRL6kwuEUYsA\" data-layout=\"full\" data-theme=\"dark\" data-count=\"default\"></div>\n[/ux_html]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-12 11:56:12','2022-04-12 11:56:12','',6,'http://demoweblinks.in/ping/?p=284',0,'revision','',0),(286,1,'2022-04-12 12:13:37','2022-04-12 12:13:37','','','','publish','closed','closed','','286','','','2022-04-12 12:13:37','2022-04-12 12:13:37','',0,'http://demoweblinks.in/ping/?post_type=counter_numbers&#038;p=286',0,'counter_numbers','',0),(288,1,'2022-04-12 12:15:38','2022-04-12 12:15:38','','Counter','','publish','closed','closed','','counter','','','2022-04-27 06:41:03','2022-04-27 06:41:03','',0,'http://demoweblinks.in/ping/?post_type=everest-counter&#038;p=288',0,'everest-counter','',0),(289,1,'2022-04-12 12:17:20','2022-04-12 12:17:20','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Gharcha Swaad</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> KabitasLifeStyle</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Machinery Magazine</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Hindi Khabar</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Wrestle India</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" class=\"logo-slider\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-12 12:17:20','2022-04-12 12:17:20','',6,'http://demoweblinks.in/ping/?p=289',0,'revision','',0),(290,1,'2022-04-12 12:17:49','2022-04-12 12:17:49','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Gharcha Swaad</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> KabitasLifeStyle</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Machinery Magazine</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Hindi Khabar</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Wrestle India</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" class=\"logo-slider\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-12 12:17:49','2022-04-12 12:17:49','',6,'http://demoweblinks.in/ping/?p=290',0,'revision','',0),(292,1,'2022-04-12 12:26:05','2022-04-12 12:26:05','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n.service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n.logo-slider .flickity-slider{\n	left: 164px!important;\n}\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background:#8196f8;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-12 12:26:05','2022-04-12 12:26:05','',32,'http://demoweblinks.in/ping/?p=292',0,'revision','',0),(294,1,'2022-04-12 12:26:51','2022-04-12 12:26:51','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n.service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n.logo-slider .flickity-slider{\n	left: 164px!important;\n}\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-12 12:26:51','2022-04-12 12:26:51','',32,'http://demoweblinks.in/ping/?p=294',0,'revision','',0),(296,1,'2022-04-12 12:31:15','2022-04-12 12:31:15','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n.service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n.logo-slider .flickity-slider{\n	left: 164px!important;\n}\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:red;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-12 12:31:15','2022-04-12 12:31:15','',32,'http://demoweblinks.in/ping/?p=296',0,'revision','',0),(298,1,'2022-04-12 12:33:31','2022-04-12 12:33:31','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n.service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n.logo-slider .flickity-slider{\n	left: 164px!important;\n}\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-12 12:33:31','2022-04-12 12:33:31','',32,'http://demoweblinks.in/ping/?p=298',0,'revision','',0),(299,1,'2022-04-13 12:06:08','2022-04-13 12:06:08','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Gharcha Swaad</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> KabitasLifeStyle</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Machinery Magazine</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Hindi Khabar</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Wrestle India</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Tamil Gaming</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b><br />\nBEJOD</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" class=\"logo-slider\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-13 12:06:08','2022-04-13 12:06:08','',6,'http://demoweblinks.in/ping/?p=299',0,'revision','',0),(300,1,'2022-04-13 12:37:36','2022-04-13 12:37:36','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Gharcha Swaad</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> KabitasLifeStyle</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Machinery Magazine</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Hindi Khabar</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Wrestle India</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Tamil Gaming</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b><br />\nBEJOD</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" class=\"logo-slider\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-13 12:37:36','2022-04-13 12:37:36','',6,'http://demoweblinks.in/ping/?p=300',0,'revision','',0),(301,1,'2022-04-14 04:03:02','2022-04-14 04:03:02','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Gharcha Swaad</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> KabitasLifeStyle</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Machinery Magazine</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Hindi Khabar</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Wrestle India</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Tamil Gaming</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b><br />\nBEJOD</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" class=\"logo-slider\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-14 04:03:02','2022-04-14 04:03:02','',6,'http://demoweblinks.in/ping/?p=301',0,'revision','',0),(302,1,'2022-04-14 04:03:27','2022-04-14 04:03:27','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Gharcha Swaad</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> KabitasLifeStyle</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Machinery Magazine</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Hindi Khabar</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Wrestle India</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Tamil Gaming</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b><br />\nBEJOD</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" class=\"logo-slider\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-14 04:03:27','2022-04-14 04:03:27','',6,'http://demoweblinks.in/ping/?p=302',0,'revision','',0),(303,1,'2022-04-14 04:05:49','2022-04-14 04:05:49','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Machinery Magazine</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Hindi Khabar</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Wrestle India</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Tamil Gaming</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b><br />\nBEJOD</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" class=\"logo-slider\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-14 04:05:49','2022-04-14 04:05:49','',6,'http://demoweblinks.in/ping/?p=303',0,'revision','',0),(304,1,'2022-04-14 04:07:17','2022-04-14 04:07:17','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Machinery Magazine</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Hindi Khabar</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Wrestle India</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Tamil Gaming</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b><br />\nBEJOD</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" class=\"logo-slider\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-14 04:07:17','2022-04-14 04:07:17','',6,'http://demoweblinks.in/ping/?p=304',0,'revision','',0),(305,1,'2022-04-14 04:09:18','2022-04-14 04:09:18','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Hindi Khabar</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Wrestle India</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Tamil Gaming</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b><br />\nBEJOD</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" class=\"logo-slider\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-14 04:09:18','2022-04-14 04:09:18','',6,'http://demoweblinks.in/ping/?p=305',0,'revision','',0),(306,1,'2022-04-14 04:10:37','2022-04-14 04:10:37','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Wrestle India</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Tamil Gaming</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b><br />\nBEJOD</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" class=\"logo-slider\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-14 04:10:37','2022-04-14 04:10:37','',6,'http://demoweblinks.in/ping/?p=306',0,'revision','',0),(307,1,'2022-04-14 04:11:47','2022-04-14 04:11:47','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Tamil Gaming</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b><br />\nBEJOD</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" class=\"logo-slider\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-14 04:11:47','2022-04-14 04:11:47','',6,'http://demoweblinks.in/ping/?p=307',0,'revision','',0),(308,1,'2022-04-14 04:12:57','2022-04-14 04:12:57','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b><br />\nBEJOD</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" class=\"logo-slider\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-14 04:12:57','2022-04-14 04:12:57','',6,'http://demoweblinks.in/ping/?p=308',0,'revision','',0),(309,1,'2022-04-14 04:13:51','2022-04-14 04:13:51','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" class=\"logo-slider\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-14 04:13:51','2022-04-14 04:13:51','',6,'http://demoweblinks.in/ping/?p=309',0,'revision','',0),(310,1,'2022-04-14 04:14:20','2022-04-14 04:14:20','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" class=\"logo-slider\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-14 04:14:20','2022-04-14 04:14:20','',6,'http://demoweblinks.in/ping/?p=310',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (311,1,'2022-04-14 04:14:48','2022-04-14 04:14:48','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" class=\"logo-slider\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-14 04:14:48','2022-04-14 04:14:48','',6,'http://demoweblinks.in/ping/?p=311',0,'revision','',0),(312,1,'2022-04-14 05:13:32','2022-04-14 05:13:32','','unnamed (1)','','inherit','open','closed','','unnamed-1','','','2022-04-14 05:13:32','2022-04-14 05:13:32','',0,'http://demoweblinks.in/ping/wp-content/uploads/2022/04/unnamed-1.jpg',0,'attachment','image/jpeg',0),(313,1,'2022-04-14 05:15:23','2022-04-14 05:15:23','','unnamed (2)','','inherit','open','closed','','unnamed-2','','','2022-04-14 05:15:23','2022-04-14 05:15:23','',0,'http://demoweblinks.in/ping/wp-content/uploads/2022/04/unnamed-2.jpg',0,'attachment','image/jpeg',0),(314,1,'2022-04-14 05:15:30','2022-04-14 05:15:30','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"150px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"150px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-14 05:15:30','2022-04-14 05:15:30','',6,'http://demoweblinks.in/ping/?p=314',0,'revision','',0),(315,1,'2022-04-14 05:16:44','2022-04-14 05:16:44','','unnamed (3)','','inherit','open','closed','','unnamed-3','','','2022-04-14 05:16:44','2022-04-14 05:16:44','',0,'http://demoweblinks.in/ping/wp-content/uploads/2022/04/unnamed-3.jpg',0,'attachment','image/jpeg',0),(316,1,'2022-04-14 05:16:57','2022-04-14 05:16:57','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"150px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"150px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"150px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-14 05:16:57','2022-04-14 05:16:57','',6,'http://demoweblinks.in/ping/?p=316',0,'revision','',0),(317,1,'2022-04-14 05:17:37','2022-04-14 05:17:37','','unnamed (4)','','inherit','open','closed','','unnamed-4','','','2022-04-14 05:17:37','2022-04-14 05:17:37','',0,'http://demoweblinks.in/ping/wp-content/uploads/2022/04/unnamed-4.jpg',0,'attachment','image/jpeg',0),(318,1,'2022-04-14 05:17:59','2022-04-14 05:17:59','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"150px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"150px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"150px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"150px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n[logo img=\"72\" height=\"150px\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-14 05:17:59','2022-04-14 05:17:59','',6,'http://demoweblinks.in/ping/?p=318',0,'revision','',0),(319,1,'2022-04-14 05:18:38','2022-04-14 05:18:38','','unnamed (5)','','inherit','open','closed','','unnamed-5','','','2022-04-14 05:18:38','2022-04-14 05:18:38','',0,'http://demoweblinks.in/ping/wp-content/uploads/2022/04/unnamed-5.jpg',0,'attachment','image/jpeg',0),(320,1,'2022-04-14 05:19:27','2022-04-14 05:19:27','','unnamed (6)','','inherit','open','closed','','unnamed-6','','','2022-04-14 05:19:27','2022-04-14 05:19:27','',0,'http://demoweblinks.in/ping/wp-content/uploads/2022/04/unnamed-6.jpg',0,'attachment','image/jpeg',0),(321,1,'2022-04-14 05:19:39','2022-04-14 05:19:39','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"150px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"150px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"150px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"150px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"150px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"150px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-14 05:19:39','2022-04-14 05:19:39','',6,'http://demoweblinks.in/ping/?p=321',0,'revision','',0),(322,1,'2022-04-14 05:21:03','2022-04-14 05:21:03','','channels4_profile (1)','','inherit','open','closed','','channels4_profile-1','','','2022-04-14 05:21:03','2022-04-14 05:21:03','',0,'http://demoweblinks.in/ping/wp-content/uploads/2022/04/channels4_profile-1.jpg',0,'attachment','image/jpeg',0),(323,1,'2022-04-14 05:21:11','2022-04-14 05:21:11','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"150px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"150px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"150px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"150px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"150px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"150px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"150px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-14 05:21:11','2022-04-14 05:21:11','',6,'http://demoweblinks.in/ping/?p=323',0,'revision','',0),(324,1,'2022-04-14 05:22:02','2022-04-14 05:22:02','','unnamed (7)','','inherit','open','closed','','unnamed-7','','','2022-04-14 05:22:02','2022-04-14 05:22:02','',0,'http://demoweblinks.in/ping/wp-content/uploads/2022/04/unnamed-7.jpg',0,'attachment','image/jpeg',0),(325,1,'2022-04-14 05:23:00','2022-04-14 05:23:00','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"150px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"150px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"150px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"150px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"150px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"150px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"150px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-14 05:23:00','2022-04-14 05:23:00','',6,'http://demoweblinks.in/ping/?p=325',0,'revision','',0),(326,1,'2022-04-14 05:23:54','2022-04-14 05:23:54','','channels4_profile (2)','','inherit','open','closed','','channels4_profile-2','','','2022-04-14 05:23:54','2022-04-14 05:23:54','',0,'http://demoweblinks.in/ping/wp-content/uploads/2022/04/channels4_profile-2.jpg',0,'attachment','image/jpeg',0),(327,1,'2022-04-14 05:24:55','2022-04-14 05:24:55','','channels4_profile','','inherit','open','closed','','channels4_profile','','','2022-04-14 05:24:55','2022-04-14 05:24:55','',0,'http://demoweblinks.in/ping/wp-content/uploads/2022/04/channels4_profile.jpg',0,'attachment','image/jpeg',0),(328,1,'2022-04-14 05:25:03','2022-04-14 05:25:03','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"150px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"150px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"150px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"150px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"150px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"150px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"150px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"150px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"150px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"150px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-14 05:25:03','2022-04-14 05:25:03','',6,'http://demoweblinks.in/ping/?p=328',0,'revision','',0),(329,1,'2022-04-14 05:25:50','2022-04-14 05:25:50','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"150px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"150px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"150px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"150px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"150px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"150px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"150px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"150px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"150px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-14 05:25:50','2022-04-14 05:25:50','',6,'http://demoweblinks.in/ping/?p=329',0,'revision','',0),(330,1,'2022-04-14 05:27:39','2022-04-14 05:27:39','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-14 05:27:39','2022-04-14 05:27:39','',6,'http://demoweblinks.in/ping/?p=330',0,'revision','',0),(331,1,'2022-04-14 05:28:20','2022-04-14 05:28:20','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-14 05:28:20','2022-04-14 05:28:20','',6,'http://demoweblinks.in/ping/?p=331',0,'revision','',0),(332,1,'2022-04-14 05:28:43','2022-04-14 05:28:43','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>How We Work</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-14 05:28:43','2022-04-14 05:28:43','',6,'http://demoweblinks.in/ping/?p=332',0,'revision','',0),(333,1,'2022-04-14 05:32:42','2022-04-14 05:32:42','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-14 05:32:42','2022-04-14 05:32:42','',6,'http://demoweblinks.in/ping/?p=333',0,'revision','',0),(341,1,'2022-04-14 05:43:22','2022-04-14 05:43:22','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n.service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n.logo-slider .flickity-slider{\n	left: 164px!important;\n}\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	ec-template1 .ec-counter-items-wrap.ec-column-3 .ec-counter-item{\n		max-width:100%;\n	}\n	.ec-counter-items-wrap.ec-column-3 .ec-counter-item {\n   \n    width: 100%;\n}\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-14 05:43:22','2022-04-14 05:43:22','',32,'http://demoweblinks.in/ping/?p=341',0,'revision','',0),(343,1,'2022-04-14 05:44:08','2022-04-14 05:44:08','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n.service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n.logo-slider .flickity-slider{\n	left: 164px!important;\n}\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\n@media only screen and (min-width: 1024px)   {\n	\n	ec-template1 .ec-counter-items-wrap.ec-column-3 .ec-counter-item{\n		max-width:100%;\n	}\n	.ec-counter-items-wrap.ec-column-3 .ec-counter-item {\n   \n    width: 100%;\n}\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-14 05:44:08','2022-04-14 05:44:08','',32,'http://demoweblinks.in/ping/?p=343',0,'revision','',0),(345,1,'2022-04-14 05:45:08','2022-04-14 05:45:08','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n.service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n.logo-slider .flickity-slider{\n	left: 164px!important;\n}\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\n@media only screen and (min-width: 1024px)   {\n	\n	.ec-template1 .ec-counter-items-wrap.ec-column-3 .ec-counter-item{\n		max-width:100%;\n	}\n	.ec-counter-items-wrap.ec-column-3 .ec-counter-item {\n   \n    width: 100%;\n}\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-14 05:45:08','2022-04-14 05:45:08','',32,'http://demoweblinks.in/ping/?p=345',0,'revision','',0),(347,1,'2022-04-14 05:45:33','2022-04-14 05:45:33','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n.service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n.logo-slider .flickity-slider{\n	left: 164px!important;\n}\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\n@media only screen and max-width: 1024px)   {\n	\n	.ec-template1 .ec-counter-items-wrap.ec-column-3 .ec-counter-item{\n		max-width:100%!important;\n	}\n	.ec-counter-items-wrap.ec-column-3 .ec-counter-item {\n   \n    width: 100%!important;\n}\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-14 05:45:33','2022-04-14 05:45:33','',32,'http://demoweblinks.in/ping/?p=347',0,'revision','',0),(349,1,'2022-04-14 05:46:12','2022-04-14 05:46:12','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n.service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n.logo-slider .flickity-slider{\n	left: 164px!important;\n}\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\n@media only screen and max-width: 1024px)   {\n	\n	\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-14 05:46:12','2022-04-14 05:46:12','',32,'http://demoweblinks.in/ping/?p=349',0,'revision','',0),(351,1,'2022-04-14 05:47:38','2022-04-14 05:47:38','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n.service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n.logo-slider .flickity-slider{\n	left: 164px!important;\n}\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\n@media only screen and max-width: 1024px)   {\n	.ec-counter-items-wrap.ec-column-3 .ec-counter-item{\n		width:100%;\n	}\n	\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-14 05:47:38','2022-04-14 05:47:38','',32,'http://demoweblinks.in/ping/?p=351',0,'revision','',0),(353,1,'2022-04-14 05:49:34','2022-04-14 05:49:34','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n.service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n.logo-slider .flickity-slider{\n	left: 164px!important;\n}\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\n','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-14 05:49:34','2022-04-14 05:49:34','',32,'http://demoweblinks.in/ping/?p=353',0,'revision','',0),(354,1,'2022-04-14 07:29:55','2022-04-14 07:29:55','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\" image_hover=\"fade-in\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-14 07:29:55','2022-04-14 07:29:55','',6,'http://demoweblinks.in/ping/?p=354',0,'revision','',0),(355,1,'2022-04-14 07:36:54','2022-04-14 07:36:54','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" style=\"shade\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\" image_hover=\"fade-in\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row style=\"collapse\" width=\"full-width\"]\n\n[col span=\"4\"]\n\n\n[/col]\n[col span=\"4\"]\n\n\n[/col]\n[col span=\"4\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-14 07:36:54','2022-04-14 07:36:54','',6,'http://demoweblinks.in/ping/?p=355',0,'revision','',0),(356,1,'2022-04-14 07:41:29','2022-04-14 07:41:29','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row style=\"collapse\" width=\"full-width\"]\n\n[col span=\"4\"]\n\n[ux_image_box img=\"71\" image_radius=\"6\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\"]\n\n\n[/col]\n[col span=\"4\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-14 07:41:29','2022-04-14 07:41:29','',6,'http://demoweblinks.in/ping/?p=356',0,'revision','',0),(357,1,'2022-04-14 07:46:18','2022-04-14 07:46:18','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"service-section\"]\n\n[row style=\"collapse\" width=\"full-width\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n[col span=\"4\"]\n\n[ux_image_box img=\"71\" image_radius=\"6\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\"]\n\n\n[/col]\n[col span=\"4\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-14 07:46:18','2022-04-14 07:46:18','',6,'http://demoweblinks.in/ping/?p=357',0,'revision','',0),(358,1,'2022-04-14 07:46:41','2022-04-14 07:46:41','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row depth=\"3\" depth_hover=\"5\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_image_box img=\"71\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-14 07:46:41','2022-04-14 07:46:41','',6,'http://demoweblinks.in/ping/?p=358',0,'revision','',0),(359,1,'2022-04-14 07:47:18','2022-04-14 07:47:18','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"service-section\"]\n\n[row depth=\"3\" depth_hover=\"5\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_image_box img=\"71\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-14 07:47:18','2022-04-14 07:47:18','',6,'http://demoweblinks.in/ping/?p=359',0,'revision','',0),(360,1,'2022-04-14 07:48:39','2022-04-14 07:48:39','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"service-section\"]\n\n[row depth=\"3\" depth_hover=\"5\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-14 07:48:39','2022-04-14 07:48:39','',6,'http://demoweblinks.in/ping/?p=360',0,'revision','',0),(361,1,'2022-04-14 07:49:40','2022-04-14 07:49:40','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"service-section\"]\n\n[row depth=\"3\" depth_hover=\"5\"]\n\n[col span=\"4\" span__sm=\"12\" bg_radius=\"8\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-14 07:49:40','2022-04-14 07:49:40','',6,'http://demoweblinks.in/ping/?p=361',0,'revision','',0),(362,1,'2022-04-14 07:50:34','2022-04-14 07:50:34','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"service-section\"]\n\n[row depth=\"3\" depth_hover=\"5\"]\n\n[col span=\"4\" span__sm=\"12\" bg_radius=\"8\"]\n\n[ux_image_box img=\"71\" image_radius=\"10\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-14 07:50:34','2022-04-14 07:50:34','',6,'http://demoweblinks.in/ping/?p=362',0,'revision','',0),(363,1,'2022-04-14 07:51:08','2022-04-14 07:51:08','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"service-section\"]\n\n[row depth=\"3\" depth_hover=\"5\"]\n\n[col span=\"4\" span__sm=\"12\" bg_radius=\"8\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-14 07:51:08','2022-04-14 07:51:08','',6,'http://demoweblinks.in/ping/?p=363',0,'revision','',0),(364,1,'2022-04-14 07:53:26','2022-04-14 07:53:26','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"service-section\"]\n\n[row depth=\"3\" depth_hover=\"5\"]\n\n[col span=\"4\" span__sm=\"12\" bg_radius=\"8\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-14 07:53:26','2022-04-14 07:53:26','',6,'http://demoweblinks.in/ping/?p=364',0,'revision','',0),(365,1,'2022-04-14 07:54:43','2022-04-14 07:54:43','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"service-section\"]\n\n[row depth=\"3\" depth_hover=\"5\"]\n\n[col span=\"4\" span__sm=\"12\" bg_radius=\"8\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-14 07:54:43','2022-04-14 07:54:43','',6,'http://demoweblinks.in/ping/?p=365',0,'revision','',0),(366,1,'2022-04-14 07:55:06','2022-04-14 07:55:06','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"service-section\"]\n\n[row depth=\"3\" depth_hover=\"5\"]\n\n[col span=\"4\" span__sm=\"12\" bg_radius=\"8\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-14 07:55:06','2022-04-14 07:55:06','',6,'http://demoweblinks.in/ping/?p=366',0,'revision','',0),(367,1,'2022-04-14 07:56:56','2022-04-14 07:56:56','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"service-section\"]\n\n[row depth=\"3\" depth_hover=\"5\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"true\" bg_radius=\"8\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-14 07:56:56','2022-04-14 07:56:56','',6,'http://demoweblinks.in/ping/?p=367',0,'revision','',0),(368,1,'2022-04-14 08:00:00','2022-04-14 08:00:00','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"service-section\"]\n\n[row depth=\"3\" depth_hover=\"5\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-14 08:00:00','2022-04-14 08:00:00','',6,'http://demoweblinks.in/ping/?p=368',0,'revision','',0),(369,1,'2022-04-14 08:00:46','2022-04-14 08:00:46','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"service-section\"]\n\n[row depth=\"3\" depth_hover=\"5\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-14 08:00:46','2022-04-14 08:00:46','',6,'http://demoweblinks.in/ping/?p=369',0,'revision','',0),(370,1,'2022-04-14 08:01:31','2022-04-14 08:01:31','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"service-section\"]\n\n[row depth=\"3\" depth_hover=\"5\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-14 08:01:31','2022-04-14 08:01:31','',6,'http://demoweblinks.in/ping/?p=370',0,'revision','',0),(371,1,'2022-04-14 08:05:28','2022-04-14 08:05:28','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"service-section\"]\n\n[row depth_hover=\"5\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-14 08:05:28','2022-04-14 08:05:28','',6,'http://demoweblinks.in/ping/?p=371',0,'revision','',0),(372,1,'2022-04-14 08:05:56','2022-04-14 08:05:56','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"service-section\"]\n\n[row depth_hover=\"5\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-14 08:05:56','2022-04-14 08:05:56','',6,'http://demoweblinks.in/ping/?p=372',0,'revision','',0),(373,1,'2022-04-14 08:06:45','2022-04-14 08:06:45','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"service-section\"]\n\n[row depth=\"3\" depth_hover=\"5\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-14 08:06:45','2022-04-14 08:06:45','',6,'http://demoweblinks.in/ping/?p=373',0,'revision','',0),(374,1,'2022-04-14 08:07:55','2022-04-14 08:07:55','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth=\"3\" depth_hover=\"5\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"right\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-14 08:07:55','2022-04-14 08:07:55','',6,'http://demoweblinks.in/ping/?p=374',0,'revision','',0),(376,1,'2022-04-20 04:27:00','2022-04-20 04:27:00','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth=\"3\" depth_hover=\"5\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-20 04:27:00','2022-04-20 04:27:00','',6,'http://demoweblinks.in/ping/?p=376',0,'revision','',0),(377,1,'2022-04-20 04:27:55','2022-04-20 04:27:55','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth=\"3\" depth_hover=\"5\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider style=\"container\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-20 04:27:55','2022-04-20 04:27:55','',6,'http://demoweblinks.in/ping/?p=377',0,'revision','',0),(378,1,'2022-04-20 04:28:37','2022-04-20 04:28:37','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth=\"3\" depth_hover=\"5\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider style=\"focus\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-20 04:28:37','2022-04-20 04:28:37','',6,'http://demoweblinks.in/ping/?p=378',0,'revision','',0),(379,1,'2022-04-20 04:29:06','2022-04-20 04:29:06','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth=\"3\" depth_hover=\"5\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-20 04:29:06','2022-04-20 04:29:06','',6,'http://demoweblinks.in/ping/?p=379',0,'revision','',0),(380,1,'2022-04-20 04:29:23','2022-04-20 04:29:23','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\tbackground:white;\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n.service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\n\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-20 04:29:23\"\n    }\n}','','','trash','closed','closed','','12064e96-371b-4fef-8cb2-0357a49a776b','','','2022-04-20 04:29:23','2022-04-20 04:29:23','',0,'http://demoweblinks.in/ping/2022/04/20/12064e96-371b-4fef-8cb2-0357a49a776b/',0,'customize_changeset','',0),(381,1,'2022-04-20 04:29:23','2022-04-20 04:29:23','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n.service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\n','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-20 04:29:23','2022-04-20 04:29:23','',32,'http://demoweblinks.in/ping/?p=381',0,'revision','',0),(382,1,'2022-04-20 04:31:31','2022-04-20 04:31:31','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth=\"3\" depth_hover=\"5\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-20 04:31:31','2022-04-20 04:31:31','',6,'http://demoweblinks.in/ping/?p=382',0,'revision','',0),(383,1,'2022-04-20 04:36:57','2022-04-20 04:36:57','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth=\"3\" depth_hover=\"5\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-20 04:36:57','2022-04-20 04:36:57','',6,'http://demoweblinks.in/ping/?p=383',0,'revision','',0),(384,1,'2022-04-20 04:40:51','2022-04-20 04:40:51','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-20 04:40:51','2022-04-20 04:40:51','',6,'http://demoweblinks.in/ping/?p=384',0,'revision','',0),(385,1,'2022-04-20 04:43:17','2022-04-20 04:43:17','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\tbackground:white;\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n.service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n\\n\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-20 04:43:17\"\n    }\n}','','','trash','closed','closed','','952de7e3-493c-4068-a0ac-6b4d76af649a','','','2022-04-20 04:43:17','2022-04-20 04:43:17','',0,'http://demoweblinks.in/ping/?p=385',0,'customize_changeset','',0),(386,1,'2022-04-20 04:43:17','2022-04-20 04:43:17','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n.service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n\n','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-20 04:43:17','2022-04-20 04:43:17','',32,'http://demoweblinks.in/ping/?p=386',0,'revision','',0),(387,1,'2022-04-20 04:46:29','2022-04-20 04:46:29','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\tbackground:white;\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n.service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n.box-text.text-center{\\n\\theight:300px;\\n}\\n\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-20 04:46:29\"\n    }\n}','','','trash','closed','closed','','ef299ef4-e1ba-4957-b70d-ebe136e066fd','','','2022-04-20 04:46:29','2022-04-20 04:46:29','',0,'http://demoweblinks.in/ping/?p=387',0,'customize_changeset','',0),(388,1,'2022-04-20 04:46:29','2022-04-20 04:46:29','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n.service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.box-text.text-center{\n	height:300px;\n}\n','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-20 04:46:29','2022-04-20 04:46:29','',32,'http://demoweblinks.in/ping/?p=388',0,'revision','',0),(389,1,'2022-04-20 06:22:20','2022-04-20 06:22:20','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\tbackground:white;\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n.service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n.box-text.text-center{\\n\\theight:300px;\\n}\\n.block{\\n\\tborder-radius:50px;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-20 06:22:20\"\n    }\n}','','','trash','closed','closed','','8bd2018f-a292-407e-9396-b65d1f7937cf','','','2022-04-20 06:22:20','2022-04-20 06:22:20','',0,'http://demoweblinks.in/ping/2022/04/20/8bd2018f-a292-407e-9396-b65d1f7937cf/',0,'customize_changeset','',0),(390,1,'2022-04-20 06:22:20','2022-04-20 06:22:20','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n.service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.box-text.text-center{\n	height:300px;\n}\n.block{\n	border-radius:50px;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-20 06:22:20','2022-04-20 06:22:20','',32,'http://demoweblinks.in/ping/?p=390',0,'revision','',0),(391,1,'2022-04-20 06:23:02','2022-04-20 06:23:02','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-20 06:23:02','2022-04-20 06:23:02','',6,'http://demoweblinks.in/ping/?p=391',0,'revision','',0),(392,1,'2022-04-20 06:23:11','2022-04-20 06:23:11','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-20 06:23:11','2022-04-20 06:23:11','',6,'http://demoweblinks.in/ping/?p=392',0,'revision','',0),(393,1,'2022-04-20 06:23:37','2022-04-20 06:23:37','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-20 06:23:37','2022-04-20 06:23:37','',6,'http://demoweblinks.in/ping/?p=393',0,'revision','',0),(394,1,'2022-04-20 06:24:00','2022-04-20 06:24:00','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"custom\" custom_width=\"1200px\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" image_size=\"original\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-20 06:24:00','2022-04-20 06:24:00','',6,'http://demoweblinks.in/ping/?p=394',0,'revision','',0),(395,1,'2022-04-20 06:25:55','2022-04-20 06:25:55','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\tbackground:white;\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n.service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n.box-text.text-center .service1{\\n\\theight:300px;\\n}\\n.box-text.text-center .service2{\\n\\theight:200px;\\n}\\n.box-text.text-center .service3{\\n\\theight:140px;\\n}\\n.block{\\n\\tborder-radius:50px;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-20 06:25:55\"\n    }\n}','','','trash','closed','closed','','e2f0b8e4-df13-4014-b313-5056f23075b2','','','2022-04-20 06:25:55','2022-04-20 06:25:55','',0,'http://demoweblinks.in/ping/?p=395',0,'customize_changeset','',0),(396,1,'2022-04-20 06:25:55','2022-04-20 06:25:55','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n.service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.box-text.text-center .service1{\n	height:300px;\n}\n.box-text.text-center .service2{\n	height:200px;\n}\n.box-text.text-center .service3{\n	height:140px;\n}\n.block{\n	border-radius:50px;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-20 06:25:55','2022-04-20 06:25:55','',32,'http://demoweblinks.in/ping/?p=396',0,'revision','',0),(397,1,'2022-04-20 06:26:27','2022-04-20 06:26:27','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\tbackground:white;\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n.service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n.box-text.text-center .service1{\\n\\theight:250px;\\n}\\n.box-text.text-center .service2{\\n\\theight:180px;\\n}\\n.box-text.text-center .service3{\\n\\theight:140px;\\n}\\n.block{\\n\\tborder-radius:50px;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-20 06:26:27\"\n    }\n}','','','trash','closed','closed','','5ef142bf-f575-4a68-85cf-e05515df6507','','','2022-04-20 06:26:27','2022-04-20 06:26:27','',0,'http://demoweblinks.in/ping/2022/04/20/5ef142bf-f575-4a68-85cf-e05515df6507/',0,'customize_changeset','',0),(398,1,'2022-04-20 06:26:27','2022-04-20 06:26:27','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n.service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.box-text.text-center .service1{\n	height:250px;\n}\n.box-text.text-center .service2{\n	height:180px;\n}\n.box-text.text-center .service3{\n	height:140px;\n}\n.block{\n	border-radius:50px;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-20 06:26:27','2022-04-20 06:26:27','',32,'http://demoweblinks.in/ping/?p=398',0,'revision','',0),(399,1,'2022-04-20 06:29:30','2022-04-20 06:29:30','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-20 06:29:30','2022-04-20 06:29:30','',6,'http://demoweblinks.in/ping/?p=399',0,'revision','',0),(400,1,'2022-04-20 06:31:51','2022-04-20 06:31:51','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-20 06:31:51','2022-04-20 06:31:51','',6,'http://demoweblinks.in/ping/?p=400',0,'revision','',0),(401,1,'2022-04-20 06:33:44','2022-04-20 06:33:44','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-20 06:33:44','2022-04-20 06:33:44','',6,'http://demoweblinks.in/ping/?p=401',0,'revision','',0),(402,1,'2022-04-20 06:34:52','2022-04-20 06:34:52','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-20 06:34:52','2022-04-20 06:34:52','',6,'http://demoweblinks.in/ping/?p=402',0,'revision','',0),(403,1,'2022-04-20 06:36:09','2022-04-20 06:36:09','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\" margin=\"100px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-20 06:36:09','2022-04-20 06:36:09','',6,'http://demoweblinks.in/ping/?p=403',0,'revision','',0),(404,1,'2022-04-20 06:37:10','2022-04-20 06:37:10','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\" height=\"400px\" margin=\"100px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-20 06:37:10','2022-04-20 06:37:10','',6,'http://demoweblinks.in/ping/?p=404',0,'revision','',0),(405,1,'2022-04-20 06:38:26','2022-04-20 06:38:26','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\" height=\"500px\" margin=\"100px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-20 06:38:26','2022-04-20 06:38:26','',6,'http://demoweblinks.in/ping/?p=405',0,'revision','',0),(406,1,'2022-04-20 06:45:48','2022-04-20 06:45:48','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\tbackground:white;\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n/* .service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n} */\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n.box-text.text-center .service1{\\n\\theight:250px;\\n}\\n.box-text.text-center .service2{\\n\\theight:180px;\\n}\\n.box-text.text-center .service3{\\n\\theight:140px;\\n}\\n.block{\\n\\tborder-radius:50px;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-20 06:45:48\"\n    }\n}','','','trash','closed','closed','','51e86f67-582b-4315-91c3-007a4b00aebb','','','2022-04-20 06:45:48','2022-04-20 06:45:48','',0,'http://demoweblinks.in/ping/2022/04/20/51e86f67-582b-4315-91c3-007a4b00aebb/',0,'customize_changeset','',0),(407,1,'2022-04-20 06:45:48','2022-04-20 06:45:48','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n/* .service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n} */\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.box-text.text-center .service1{\n	height:250px;\n}\n.box-text.text-center .service2{\n	height:180px;\n}\n.box-text.text-center .service3{\n	height:140px;\n}\n.block{\n	border-radius:50px;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-20 06:45:48','2022-04-20 06:45:48','',32,'http://demoweblinks.in/ping/?p=407',0,'revision','',0),(408,1,'2022-04-20 06:47:40','2022-04-20 06:47:40','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\tbackground:white;\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n/* .service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n} */\\n.service-section{\\n\\tbackground:rgb(14 13 13);\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n.box-text.text-center .service1{\\n\\theight:250px;\\n}\\n.box-text.text-center .service2{\\n\\theight:180px;\\n}\\n.box-text.text-center .service3{\\n\\theight:140px;\\n}\\n.block{\\n\\tborder-radius:50px;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-20 06:47:40\"\n    }\n}','','','trash','closed','closed','','724ef76a-7471-4cc8-942a-16fe29d48af8','','','2022-04-20 06:47:40','2022-04-20 06:47:40','',0,'http://demoweblinks.in/ping/?p=408',0,'customize_changeset','',0),(409,1,'2022-04-20 06:47:40','2022-04-20 06:47:40','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n/* .service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n} */\n.service-section{\n	background:rgb(14 13 13);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.box-text.text-center .service1{\n	height:250px;\n}\n.box-text.text-center .service2{\n	height:180px;\n}\n.box-text.text-center .service3{\n	height:140px;\n}\n.block{\n	border-radius:50px;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-20 06:47:40','2022-04-20 06:47:40','',32,'http://demoweblinks.in/ping/?p=409',0,'revision','',0),(410,1,'2022-04-20 06:49:35','2022-04-20 06:49:35','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\tbackground:white;\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n/* .service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n} */\\n.service-section{\\n\\tbackground:rgb(233 229 229);\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n.box-text.text-center .service1{\\n\\theight:250px;\\n}\\n.box-text.text-center .service2{\\n\\theight:180px;\\n}\\n.box-text.text-center .service3{\\n\\theight:140px;\\n}\\n.block{\\n\\tborder-radius:50px;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-20 06:49:35\"\n    }\n}','','','trash','closed','closed','','9e97d644-d269-4b75-9dd5-421d04d7f9bc','','','2022-04-20 06:49:35','2022-04-20 06:49:35','',0,'http://demoweblinks.in/ping/2022/04/20/9e97d644-d269-4b75-9dd5-421d04d7f9bc/',0,'customize_changeset','',0),(411,1,'2022-04-20 06:49:35','2022-04-20 06:49:35','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n/* .service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n} */\n.service-section{\n	background:rgb(233 229 229);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.box-text.text-center .service1{\n	height:250px;\n}\n.box-text.text-center .service2{\n	height:180px;\n}\n.box-text.text-center .service3{\n	height:140px;\n}\n.block{\n	border-radius:50px;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-20 06:49:35','2022-04-20 06:49:35','',32,'http://demoweblinks.in/ping/?p=411',0,'revision','',0),(412,1,'2022-04-20 06:49:54','2022-04-20 06:49:54','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\" height=\"500px\" margin=\"100px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-20 06:49:54','2022-04-20 06:49:54','',6,'http://demoweblinks.in/ping/?p=412',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (413,1,'2022-04-20 07:22:13','2022-04-20 07:22:13','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-20 07:22:13','2022-04-20 07:22:13','',6,'http://demoweblinks.in/ping/?p=413',0,'revision','',0),(415,1,'2022-04-20 07:25:36','2022-04-20 07:25:36','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\" class=\"aboutus\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-20 07:25:36','2022-04-20 07:25:36','',6,'http://demoweblinks.in/ping/?p=415',0,'revision','',0),(416,1,'2022-04-20 07:32:45','2022-04-20 07:32:45','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\" class=\"aboutus\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" padding=\"50px 0px 0px 0px\" class=\"aboutus\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-20 07:32:45','2022-04-20 07:32:45','',6,'http://demoweblinks.in/ping/?p=416',0,'revision','',0),(417,1,'2022-04-20 07:34:09','2022-04-20 07:34:09','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\" class=\"aboutus\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-20 07:34:09','2022-04-20 07:34:09','',6,'http://demoweblinks.in/ping/?p=417',0,'revision','',0),(418,1,'2022-04-20 07:35:22','2022-04-20 07:35:22','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" class=\"aboutus\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-20 07:35:22','2022-04-20 07:35:22','',6,'http://demoweblinks.in/ping/?p=418',0,'revision','',0),(419,1,'2022-04-20 07:37:54','2022-04-20 07:37:54','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\tbackground:white;\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n/* .service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n} */\\n.service-section{\\n\\tbackground:rgb(233 229 229);\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n.box-text.text-center .service1{\\n\\theight:250px;\\n}\\n.box-text.text-center .service2{\\n\\theight:180px;\\n}\\n.box-text.text-center .service3{\\n\\theight:140px;\\n}\\n.block{\\n\\tborder-radius:50px;\\n}\\n.aboutus{\\n\\tpadding-top: 80px;\\n    padding-bottom: 80px;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-20 07:37:54\"\n    }\n}','','','trash','closed','closed','','f8a24c85-5f8d-48da-b79b-fe4c7dc23270','','','2022-04-20 07:37:54','2022-04-20 07:37:54','',0,'http://demoweblinks.in/ping/2022/04/20/f8a24c85-5f8d-48da-b79b-fe4c7dc23270/',0,'customize_changeset','',0),(420,1,'2022-04-20 07:37:54','2022-04-20 07:37:54','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n/* .service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n} */\n.service-section{\n	background:rgb(233 229 229);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.box-text.text-center .service1{\n	height:250px;\n}\n.box-text.text-center .service2{\n	height:180px;\n}\n.box-text.text-center .service3{\n	height:140px;\n}\n.block{\n	border-radius:50px;\n}\n.aboutus{\n	padding-top: 80px;\n    padding-bottom: 80px;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-20 07:37:54','2022-04-20 07:37:54','',32,'http://demoweblinks.in/ping/?p=420',0,'revision','',0),(421,1,'2022-04-20 07:38:43','2022-04-20 07:38:43','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\tbackground:white;\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n/* .service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n} */\\n.service-section{\\n\\tbackground:rgb(233 229 229);\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n.box-text.text-center .service1{\\n\\theight:250px;\\n}\\n.box-text.text-center .service2{\\n\\theight:180px;\\n}\\n.box-text.text-center .service3{\\n\\theight:140px;\\n}\\n.block{\\n\\tborder-radius:50px;\\n}\\n.aboutus{\\n\\tpadding-top: 80px!important;\\n  padding-bottom: 80px!important;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-20 07:38:43\"\n    }\n}','','','trash','closed','closed','','57859896-61b3-44d7-b421-c31f25a8551d','','','2022-04-20 07:38:43','2022-04-20 07:38:43','',0,'http://demoweblinks.in/ping/2022/04/20/57859896-61b3-44d7-b421-c31f25a8551d/',0,'customize_changeset','',0),(422,1,'2022-04-20 07:38:44','2022-04-20 07:38:44','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n/* .service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n} */\n.service-section{\n	background:rgb(233 229 229);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.box-text.text-center .service1{\n	height:250px;\n}\n.box-text.text-center .service2{\n	height:180px;\n}\n.box-text.text-center .service3{\n	height:140px;\n}\n.block{\n	border-radius:50px;\n}\n.aboutus{\n	padding-top: 80px!important;\n  padding-bottom: 80px!important;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-20 07:38:44','2022-04-20 07:38:44','',32,'http://demoweblinks.in/ping/?p=422',0,'revision','',0),(423,1,'2022-04-20 07:39:50','2022-04-20 07:39:50','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\tbackground:white;\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n/* .service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n} */\\n.service-section{\\n\\tbackground:rgb(233 229 229);\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n.box-text.text-center .service1{\\n\\theight:250px;\\n}\\n.box-text.text-center .service2{\\n\\theight:180px;\\n}\\n.box-text.text-center .service3{\\n\\theight:140px;\\n}\\n.block{\\n\\tborder-radius:50px;\\n}\\n\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-20 07:39:50\"\n    }\n}','','','trash','closed','closed','','495bdacd-ac87-40ee-aa58-efc8b481c18c','','','2022-04-20 07:39:50','2022-04-20 07:39:50','',0,'http://demoweblinks.in/ping/2022/04/20/495bdacd-ac87-40ee-aa58-efc8b481c18c/',0,'customize_changeset','',0),(424,1,'2022-04-20 07:39:50','2022-04-20 07:39:50','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n/* .service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n} */\n.service-section{\n	background:rgb(233 229 229);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.box-text.text-center .service1{\n	height:250px;\n}\n.box-text.text-center .service2{\n	height:180px;\n}\n.box-text.text-center .service3{\n	height:140px;\n}\n.block{\n	border-radius:50px;\n}\n','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-20 07:39:50','2022-04-20 07:39:50','',32,'http://demoweblinks.in/ping/?p=424',0,'revision','',0),(425,1,'2022-04-20 07:40:38','2022-04-20 07:40:38','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-20 07:40:38','2022-04-20 07:40:38','',6,'http://demoweblinks.in/ping/?p=425',0,'revision','',0),(426,1,'2022-04-20 07:40:56','2022-04-20 07:40:56','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\tbackground:white;\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n/* .service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n} */\\n.service-section{\\n\\tbackground:rgb(233 229 229);\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n.box-text.text-center .service1{\\n\\theight:250px;\\n}\\n.box-text.text-center .service2{\\n\\theight:180px;\\n}\\n.box-text.text-center .service3{\\n\\theight:140px;\\n}\\n.block{\\n\\tborder-radius:50px;\\n}\\n.aboutus{\\n\\tpadding-top: 80px!important;\\n  padding-bottom: 80px!important;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-20 07:40:56\"\n    }\n}','','','trash','closed','closed','','3b5d562c-bd45-4547-a7f2-11c068a36e11','','','2022-04-20 07:40:56','2022-04-20 07:40:56','',0,'http://demoweblinks.in/ping/2022/04/20/3b5d562c-bd45-4547-a7f2-11c068a36e11/',0,'customize_changeset','',0),(427,1,'2022-04-20 07:40:56','2022-04-20 07:40:56','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n/* .service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n} */\n.service-section{\n	background:rgb(233 229 229);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.box-text.text-center .service1{\n	height:250px;\n}\n.box-text.text-center .service2{\n	height:180px;\n}\n.box-text.text-center .service3{\n	height:140px;\n}\n.block{\n	border-radius:50px;\n}\n.aboutus{\n	padding-top: 80px!important;\n  padding-bottom: 80px!important;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-20 07:40:56','2022-04-20 07:40:56','',32,'http://demoweblinks.in/ping/?p=427',0,'revision','',0),(428,1,'2022-04-20 07:41:42','2022-04-20 07:41:42','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" title=\"dfgfdsg\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-20 07:41:42','2022-04-20 07:41:42','',6,'http://demoweblinks.in/ping/?p=428',0,'revision','',0),(430,1,'2022-04-20 08:31:18','2022-04-20 08:31:18','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[row col_style=\"dashed\" v_align=\"middle\"]\n\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\n\n[logo img=\"327\" hover=\"overlay-add\" height=\"150px\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\n\n[logo hover=\"color\"]\n\n\n[/col]\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\n\n[logo hover=\"color\"]\n\n\n[/col]\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\n\n[logo hover=\"color\"]\n\n\n[/col]\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\n\n[logo hover=\"color\"]\n\n\n[/col]\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\n\n[logo hover=\"color\"]\n\n\n[/col]\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\n\n[logo hover=\"color\"]\n\n\n[/col]\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\n\n[logo hover=\"color\"]\n\n\n[/col]\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\n\n[logo hover=\"color\"]\n\n\n[/col]\n\n[/row]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-20 08:31:18','2022-04-20 08:31:18','',6,'http://demoweblinks.in/ping/?p=430',0,'revision','',0),(431,1,'2022-04-20 08:33:54','2022-04-20 08:33:54','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[row col_style=\"dashed\" v_align=\"middle\"]\n\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\n\n[logo img=\"327\" hover=\"overlay-add\" height=\"150px\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\n\n[logo hover=\"color\"]\n\n\n[/col]\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\n\n[logo hover=\"color\"]\n\n\n[/col]\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\n\n[logo hover=\"color\"]\n\n\n[/col]\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\n\n[logo hover=\"color\"]\n\n\n[/col]\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\n\n[logo hover=\"color\"]\n\n\n[/col]\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\n\n[logo hover=\"color\"]\n\n\n[/col]\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\n\n[logo hover=\"color\"]\n\n\n[/col]\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\n\n[logo hover=\"color\"]\n\n\n[/col]\n\n[/row]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-20 08:33:54','2022-04-20 08:33:54','',6,'http://demoweblinks.in/ping/?p=431',0,'revision','',0),(432,1,'2022-04-20 09:26:07','2022-04-20 09:26:07','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(255, 255, 255)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Channel Development</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator\'s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"69\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Flexible Payment Solution</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>You will receive money monthly channel revenue via the most convenient method for you: wire transfer / Payoneer / Paypal</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b> Video Production</b> </p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-20 09:26:07','2022-04-20 09:26:07','',6,'http://demoweblinks.in/ping/?p=432',0,'revision','',0),(433,1,'2022-04-20 09:32:19','2022-04-20 09:32:19','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Channel Name &amp; Logos</h2>\n\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"312\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"70\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Content Strategy</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-20 09:32:19','2022-04-20 09:32:19','',6,'http://demoweblinks.in/ping/?p=433',0,'revision','',0),(434,1,'2022-04-20 09:33:14','2022-04-20 09:33:14','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Channel Name &amp; Logos</h2>\n\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"312\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"317\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-20 09:33:14','2022-04-20 09:33:14','',6,'http://demoweblinks.in/ping/?p=434',0,'revision','',0),(435,1,'2022-04-20 09:33:40','2022-04-20 09:33:40','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Channel Name &amp; Logos</h2>\n\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"312\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Brand Collaboration</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator\'s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Access to Creators Dashboard</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Training from YouTube experts &  learning material</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Internal workshops from YouTube experts. Regular updates and  information on the channel improvement</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Transparent Cooperation</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Clear contract Terms & Conditions.   No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-20 09:33:40','2022-04-20 09:33:40','',6,'http://demoweblinks.in/ping/?p=435',0,'revision','',0),(436,1,'2022-04-20 09:37:11','2022-04-20 09:37:11','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Channel Name &amp; Logos</h2>\n\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"312\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-20 09:37:11','2022-04-20 09:37:11','',6,'http://demoweblinks.in/ping/?p=436',0,'revision','',0),(437,1,'2022-04-20 09:38:00','2022-04-20 09:38:00','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Channel Name &amp; Logos</h2>\n\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"312\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p> <b>Partner Support</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-20 09:38:00','2022-04-20 09:38:00','',6,'http://demoweblinks.in/ping/?p=437',0,'revision','',0),(438,1,'2022-04-20 10:21:50','2022-04-20 10:21:50','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Channel Name &amp; Logos</h2>\n\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"312\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"71\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p><b>Provide Content ID services</b></p>\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-20 10:21:50','2022-04-20 10:21:50','',6,'http://demoweblinks.in/ping/?p=438',0,'revision','',0),(439,1,'2022-04-20 10:22:33','2022-04-20 10:22:33','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Channel Name &amp; Logos</h2>\n\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"312\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n\n[/ux_text]\n[ux_text text_color=\"rgb(255, 255, 255)\"]\n\n<p>Content ID helps copyright  holders identify and manage  illegal use of their original  content by other channels</p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-20 10:22:33','2022-04-20 10:22:33','',6,'http://demoweblinks.in/ping/?p=439',0,'revision','',0),(440,1,'2022-04-20 10:22:42','2022-04-20 10:22:42','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Channel Name &amp; Logos</h2>\n\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"312\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-20 10:22:42','2022-04-20 10:22:42','',6,'http://demoweblinks.in/ping/?p=440',0,'revision','',0),(441,1,'2022-04-20 10:23:08','2022-04-20 10:23:08','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Channel Name &amp; Logos</h2>\n\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"312\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-20 10:23:08','2022-04-20 10:23:08','',6,'http://demoweblinks.in/ping/?p=441',0,'revision','',0),(442,1,'2022-04-20 10:24:09','2022-04-20 10:24:09','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Channel Name &amp; Logos</h2>\n\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"312\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-20 10:24:09','2022-04-20 10:24:09','',6,'http://demoweblinks.in/ping/?p=442',0,'revision','',0),(443,1,'2022-04-20 10:28:15','2022-04-20 10:28:15','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Channel Name &amp; Logos</h2>\n\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"312\" style=\"shade\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-20 10:28:15','2022-04-20 10:28:15','',6,'http://demoweblinks.in/ping/?p=443',0,'revision','',0),(444,1,'2022-04-20 10:28:38','2022-04-20 10:28:38','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Channel Name &amp; Logos</h2>\n\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"312\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-20 10:28:38','2022-04-20 10:28:38','',6,'http://demoweblinks.in/ping/?p=444',0,'revision','',0),(445,1,'2022-04-20 10:33:52','2022-04-20 10:33:52','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Channel Name &amp; Logos</h2>\n\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_color=\"rgb(237, 237, 237)\" bg_radius=\"20\"]\n\n[team_member img=\"312\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_color=\"rgb(237, 237, 237)\" bg_radius=\"20\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_color=\"rgb(237, 237, 237)\" bg_radius=\"20\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_color=\"rgb(237, 237, 237)\" bg_radius=\"20\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_color=\"rgb(237, 237, 237)\" bg_radius=\"20\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_color=\"rgb(237, 237, 237)\" bg_radius=\"20\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_color=\"rgb(237, 237, 237)\" bg_radius=\"20\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_color=\"rgb(237, 237, 237)\" bg_radius=\"20\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_color=\"rgb(237, 237, 237)\" bg_radius=\"20\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_color=\"rgb(237, 237, 237)\" bg_radius=\"20\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-20 10:33:52','2022-04-20 10:33:52','',6,'http://demoweblinks.in/ping/?p=445',0,'revision','',0),(446,1,'2022-04-20 10:35:24','2022-04-20 10:35:24','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section padding=\"80px\" class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section padding=\"80px\" class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Channel Name &amp; Logos</h2>\n\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_color=\"rgb(237, 237, 237)\" bg_radius=\"20\"]\n\n[team_member img=\"312\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_color=\"rgb(237, 237, 237)\" bg_radius=\"20\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_color=\"rgb(237, 237, 237)\" bg_radius=\"20\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_color=\"rgb(237, 237, 237)\" bg_radius=\"20\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_color=\"rgb(237, 237, 237)\" bg_radius=\"20\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_color=\"rgb(237, 237, 237)\" bg_radius=\"20\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_color=\"rgb(237, 237, 237)\" bg_radius=\"20\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_color=\"rgb(237, 237, 237)\" bg_radius=\"20\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_color=\"rgb(237, 237, 237)\" bg_radius=\"20\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_color=\"rgb(237, 237, 237)\" bg_radius=\"20\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section padding=\"80px\" class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section padding=\"80px\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-20 10:35:24','2022-04-20 10:35:24','',6,'http://demoweblinks.in/ping/?p=446',0,'revision','',0),(447,1,'2022-04-20 10:37:26','2022-04-20 10:37:26','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\tbackground:white;\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n/* .service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n} */\\n.service-section{\\n\\tbackground:rgb(233 229 229);\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n.box-text.text-center .service1{\\n\\theight:250px;\\n}\\n.box-text.text-center .service2{\\n\\theight:180px;\\n}\\n.box-text.text-center .service3{\\n\\theight:140px;\\n}\\n.block{\\n\\tborder-radius:50px;\\n}\\n.aboutus{\\n\\tpadding-top: 80px!important;\\n  padding-bottom: 80px!important;\\n}\\n.header-main .nav > li > a:hover{\\n\\tcolor:#446084;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-20 10:37:26\"\n    }\n}','','','trash','closed','closed','','2347a9d5-e5d3-4264-bf37-9633c64741f3','','','2022-04-20 10:37:26','2022-04-20 10:37:26','',0,'http://demoweblinks.in/ping/?p=447',0,'customize_changeset','',0),(448,1,'2022-04-20 10:37:26','2022-04-20 10:37:26','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n/* .service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n} */\n.service-section{\n	background:rgb(233 229 229);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.box-text.text-center .service1{\n	height:250px;\n}\n.box-text.text-center .service2{\n	height:180px;\n}\n.box-text.text-center .service3{\n	height:140px;\n}\n.block{\n	border-radius:50px;\n}\n.aboutus{\n	padding-top: 80px!important;\n  padding-bottom: 80px!important;\n}\n.header-main .nav > li > a:hover{\n	color:#446084;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-20 10:37:26','2022-04-20 10:37:26','',32,'http://demoweblinks.in/ping/?p=448',0,'revision','',0),(449,1,'2022-04-20 10:56:09','2022-04-20 10:56:09','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section padding=\"80px\" class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section padding=\"80px\" class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Channel Name &amp; Logos</h2>\n\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_color=\"rgb(237, 237, 237)\" bg_radius=\"20\"]\n\n[team_member img=\"312\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_color=\"rgb(237, 237, 237)\" bg_radius=\"20\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_color=\"rgb(237, 237, 237)\" bg_radius=\"20\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_color=\"rgb(237, 237, 237)\" bg_radius=\"20\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_color=\"rgb(237, 237, 237)\" bg_radius=\"20\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_color=\"rgb(237, 237, 237)\" bg_radius=\"20\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_color=\"rgb(237, 237, 237)\" bg_radius=\"20\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_color=\"rgb(237, 237, 237)\" bg_radius=\"20\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_color=\"rgb(237, 237, 237)\" bg_radius=\"20\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_color=\"rgb(237, 237, 237)\" bg_radius=\"20\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section padding=\"80px\" class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-20 10:56:09','2022-04-20 10:56:09','',6,'http://demoweblinks.in/ping/?p=449',0,'revision','',0),(450,1,'2022-04-20 10:57:26','2022-04-20 10:57:26','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section padding=\"80px\" class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section padding=\"80px\" class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Channel Name &amp; Logos</h2>\n\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_color=\"rgb(237, 237, 237)\" bg_radius=\"20\"]\n\n[team_member img=\"312\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_color=\"rgb(237, 237, 237)\" bg_radius=\"20\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_color=\"rgb(237, 237, 237)\" bg_radius=\"20\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_color=\"rgb(237, 237, 237)\" bg_radius=\"20\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_color=\"rgb(237, 237, 237)\" bg_radius=\"20\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_color=\"rgb(237, 237, 237)\" bg_radius=\"20\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_color=\"rgb(237, 237, 237)\" bg_radius=\"20\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_color=\"rgb(237, 237, 237)\" bg_radius=\"20\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_color=\"rgb(237, 237, 237)\" bg_radius=\"20\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_color=\"rgb(237, 237, 237)\" bg_radius=\"20\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section padding=\"80px\" class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(233, 229, 229)\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-20 10:57:26','2022-04-20 10:57:26','',6,'http://demoweblinks.in/ping/?p=450',0,'revision','',0),(451,1,'2022-04-20 11:02:15','2022-04-20 11:02:15','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\tbackground:white;\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n/* .service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n} */\\n.service-section{\\n\\tbackground:rgb(233 229 229);\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n.box-text.text-center .service1{\\n\\theight:250px;\\n}\\n.box-text.text-center .service2{\\n\\theight:180px;\\n}\\n.box-text.text-center .service3{\\n\\theight:140px;\\n}\\n.block{\\n\\tborder-radius:50px;\\n}\\n.aboutus{\\n\\tpadding-top: 80px!important;\\n  padding-bottom: 80px!important;\\n}\\n.header-main .nav > li > a:hover{\\n\\tcolor:#446084;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\\n\\tfont-size:30px;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\\n\\tfont-size:20px;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-20 11:02:15\"\n    }\n}','','','trash','closed','closed','','7ea0c030-a163-4645-8340-d5740bd6bb77','','','2022-04-20 11:02:15','2022-04-20 11:02:15','',0,'http://demoweblinks.in/ping/?p=451',0,'customize_changeset','',0),(452,1,'2022-04-20 11:02:15','2022-04-20 11:02:15','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n/* .service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n} */\n.service-section{\n	background:rgb(233 229 229);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.box-text.text-center .service1{\n	height:250px;\n}\n.box-text.text-center .service2{\n	height:180px;\n}\n.box-text.text-center .service3{\n	height:140px;\n}\n.block{\n	border-radius:50px;\n}\n.aboutus{\n	padding-top: 80px!important;\n  padding-bottom: 80px!important;\n}\n.header-main .nav > li > a:hover{\n	color:#446084;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\n	font-size:30px;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\n	font-size:20px;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-20 11:02:15','2022-04-20 11:02:15','',32,'http://demoweblinks.in/ping/?p=452',0,'revision','',0),(453,1,'2022-04-20 11:03:34','2022-04-20 11:03:34','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\tbackground:white;\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n/* .service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n} */\\n.service-section{\\n\\tbackground:rgb(233 229 229);\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n.box-text.text-center .service1{\\n\\theight:250px;\\n}\\n.box-text.text-center .service2{\\n\\theight:180px;\\n}\\n.box-text.text-center .service3{\\n\\theight:140px;\\n}\\n.block{\\n\\tborder-radius:50px;\\n}\\n.aboutus{\\n\\tpadding-top: 80px!important;\\n  padding-bottom: 80px!important;\\n}\\n.header-main .nav > li > a:hover{\\n\\tcolor:#446084;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\\n\\tfont-size:25px;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\\n\\tfont-size:20px;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-20 11:03:34\"\n    }\n}','','','trash','closed','closed','','350d0015-1cc1-4f40-a748-8b913a64d849','','','2022-04-20 11:03:34','2022-04-20 11:03:34','',0,'http://demoweblinks.in/ping/2022/04/20/350d0015-1cc1-4f40-a748-8b913a64d849/',0,'customize_changeset','',0),(454,1,'2022-04-20 11:03:34','2022-04-20 11:03:34','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n/* .service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n} */\n.service-section{\n	background:rgb(233 229 229);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.box-text.text-center .service1{\n	height:250px;\n}\n.box-text.text-center .service2{\n	height:180px;\n}\n.box-text.text-center .service3{\n	height:140px;\n}\n.block{\n	border-radius:50px;\n}\n.aboutus{\n	padding-top: 80px!important;\n  padding-bottom: 80px!important;\n}\n.header-main .nav > li > a:hover{\n	color:#446084;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\n	font-size:25px;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\n	font-size:20px;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-20 11:03:34','2022-04-20 11:03:34','',32,'http://demoweblinks.in/ping/?p=454',0,'revision','',0),(455,1,'2022-04-20 11:07:42','2022-04-20 11:07:42','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\tbackground:white;\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n/* .service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n} */\\n.service-section{\\n\\tbackground:rgb(233 229 229);\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n.box-text.text-center .service1{\\n\\theight:250px;\\n}\\n.box-text.text-center .service2{\\n\\theight:180px;\\n}\\n.box-text.text-center .service3{\\n\\theight:140px;\\n}\\n.block{\\n\\tborder-radius:50px;\\n}\\n.aboutus{\\n\\tpadding-top: 80px!important;\\n  padding-bottom: 80px!important;\\n}\\n.header-main .nav > li > a:hover{\\n\\tcolor:#446084;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\\n\\tfont-size:25px;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\\n\\tfont-size:20px;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\tborder-radius:30px;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tborder-radius:30px;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-20 11:07:42\"\n    }\n}','','','trash','closed','closed','','a31a08a3-a4f0-422f-8007-de0558b0bca2','','','2022-04-20 11:07:42','2022-04-20 11:07:42','',0,'http://demoweblinks.in/ping/?p=455',0,'customize_changeset','',0),(456,1,'2022-04-20 11:07:42','2022-04-20 11:07:42','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n/* .service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n} */\n.service-section{\n	background:rgb(233 229 229);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.box-text.text-center .service1{\n	height:250px;\n}\n.box-text.text-center .service2{\n	height:180px;\n}\n.box-text.text-center .service3{\n	height:140px;\n}\n.block{\n	border-radius:50px;\n}\n.aboutus{\n	padding-top: 80px!important;\n  padding-bottom: 80px!important;\n}\n.header-main .nav > li > a:hover{\n	color:#446084;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\n	font-size:25px;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\n	font-size:20px;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n	border-radius:30px;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	border-radius:30px;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-20 11:07:42','2022-04-20 11:07:42','',32,'http://demoweblinks.in/ping/?p=456',0,'revision','',0),(457,1,'2022-04-20 11:08:07','2022-04-20 11:08:07','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section padding=\"80px\" class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section padding=\"80px\" class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Channel Name &amp; Logos</h2>\n\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_color=\"rgb(237, 237, 237)\" bg_radius=\"20\"]\n\n[team_member img=\"312\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_color=\"rgb(237, 237, 237)\" bg_radius=\"20\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_color=\"rgb(237, 237, 237)\" bg_radius=\"20\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_color=\"rgb(237, 237, 237)\" bg_radius=\"20\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_color=\"rgb(237, 237, 237)\" bg_radius=\"20\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_color=\"rgb(237, 237, 237)\" bg_radius=\"20\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_color=\"rgb(237, 237, 237)\" bg_radius=\"20\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_color=\"rgb(237, 237, 237)\" bg_radius=\"20\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_color=\"rgb(237, 237, 237)\" bg_radius=\"20\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_color=\"rgb(237, 237, 237)\" bg_radius=\"20\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section padding=\"80px\" class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Contact us</h2>\n\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(233, 229, 229)\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-20 11:08:07','2022-04-20 11:08:07','',6,'http://demoweblinks.in/ping/?p=457',0,'revision','',0),(458,1,'2022-04-20 11:10:00','2022-04-20 11:10:00','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\tbackground:white;\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n/* .service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n} */\\n.service-section{\\n\\tbackground:rgb(233 229 229);\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n.box-text.text-center .service1{\\n\\theight:250px;\\n}\\n.box-text.text-center .service2{\\n\\theight:180px;\\n}\\n.box-text.text-center .service3{\\n\\theight:140px;\\n}\\n.block{\\n\\tborder-radius:50px;\\n}\\n.aboutus{\\n\\tpadding-top: 80px!important;\\n  padding-bottom: 80px!important;\\n}\\n.header-main .nav > li > a:hover{\\n\\tcolor:#446084;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\\n\\tfont-size:25px;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\\n\\tfont-size:20px;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\n\\tborder-bottom-right-radius: 30px;\\n\\tborder-bottom-left-radius: 30px;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tborder-bottom-right-radius: 30px;\\n\\tborder-bottom-left-radius: 30px;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-20 11:09:47\"\n    }\n}','','','trash','closed','closed','','10a947ff-5b0a-4188-854c-fa0707a7aca7','','','2022-04-20 11:10:00','2022-04-20 11:10:00','',0,'http://demoweblinks.in/ping/?p=458',0,'customize_changeset','',0),(459,1,'2022-04-20 11:10:00','2022-04-20 11:10:00','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n/* .service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n} */\n.service-section{\n	background:rgb(233 229 229);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.box-text.text-center .service1{\n	height:250px;\n}\n.box-text.text-center .service2{\n	height:180px;\n}\n.box-text.text-center .service3{\n	height:140px;\n}\n.block{\n	border-radius:50px;\n}\n.aboutus{\n	padding-top: 80px!important;\n  padding-bottom: 80px!important;\n}\n.header-main .nav > li > a:hover{\n	color:#446084;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\n	font-size:25px;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\n	font-size:20px;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n\n	border-bottom-right-radius: 30px;\n	border-bottom-left-radius: 30px;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	border-bottom-right-radius: 30px;\n	border-bottom-left-radius: 30px;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-20 11:10:00','2022-04-20 11:10:00','',32,'http://demoweblinks.in/ping/?p=459',0,'revision','',0),(460,1,'2022-04-20 11:10:33','2022-04-20 11:10:33','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\tbackground:white;\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n/* .service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n} */\\n.service-section{\\n\\tbackground:rgb(233 229 229);\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n.box-text.text-center .service1{\\n\\theight:250px;\\n}\\n.box-text.text-center .service2{\\n\\theight:180px;\\n}\\n.box-text.text-center .service3{\\n\\theight:140px;\\n}\\n.block{\\n\\tborder-radius:50px;\\n}\\n.aboutus{\\n\\tpadding-top: 80px!important;\\n  padding-bottom: 80px!important;\\n}\\n.header-main .nav > li > a:hover{\\n\\tcolor:#446084;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\\n\\tfont-size:25px;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\\n\\tfont-size:20px;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\n\\tborder-bottom-right-radius: 30px;\\n\\tborder-bottom-left-radius: 30px;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tborder-top-right-radius: 30px;\\n\\tborder-top-left-radius: 30px;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-20 11:10:33\"\n    }\n}','','','trash','closed','closed','','73494026-54a5-453d-aa01-9781e430d1bf','','','2022-04-20 11:10:33','2022-04-20 11:10:33','',0,'http://demoweblinks.in/ping/2022/04/20/73494026-54a5-453d-aa01-9781e430d1bf/',0,'customize_changeset','',0),(461,1,'2022-04-20 11:10:33','2022-04-20 11:10:33','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n/* .service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n} */\n.service-section{\n	background:rgb(233 229 229);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.box-text.text-center .service1{\n	height:250px;\n}\n.box-text.text-center .service2{\n	height:180px;\n}\n.box-text.text-center .service3{\n	height:140px;\n}\n.block{\n	border-radius:50px;\n}\n.aboutus{\n	padding-top: 80px!important;\n  padding-bottom: 80px!important;\n}\n.header-main .nav > li > a:hover{\n	color:#446084;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\n	font-size:25px;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\n	font-size:20px;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n\n	border-bottom-right-radius: 30px;\n	border-bottom-left-radius: 30px;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	border-top-right-radius: 30px;\n	border-top-left-radius: 30px;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-20 11:10:33','2022-04-20 11:10:33','',32,'http://demoweblinks.in/ping/?p=461',0,'revision','',0),(462,1,'2022-04-20 11:11:30','2022-04-20 11:11:30','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\tbackground:white;\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n/* .service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n} */\\n.service-section{\\n\\tbackground:rgb(233 229 229);\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n.box-text.text-center .service1{\\n\\theight:250px;\\n}\\n.box-text.text-center .service2{\\n\\theight:180px;\\n}\\n.box-text.text-center .service3{\\n\\theight:140px;\\n}\\n.block{\\n\\tborder-radius:50px;\\n}\\n.aboutus{\\n\\tpadding-top: 80px!important;\\n  padding-bottom: 80px!important;\\n}\\n.header-main .nav > li > a:hover{\\n\\tcolor:#446084;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\\n\\tfont-size:25px;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\\n\\tfont-size:20px;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\n\\tborder-top-right-radius: 30px;\\n\\tborder-top-left-radius: 30px;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tborder-bottom-right-radius: 30px;\\n\\tborder-bottom-left-radius: 30px;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-20 11:11:30\"\n    }\n}','','','trash','closed','closed','','037c39d9-2321-4c7c-8a33-d60da55cf288','','','2022-04-20 11:11:30','2022-04-20 11:11:30','',0,'http://demoweblinks.in/ping/2022/04/20/037c39d9-2321-4c7c-8a33-d60da55cf288/',0,'customize_changeset','',0),(463,1,'2022-04-20 11:11:30','2022-04-20 11:11:30','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n/* .service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n} */\n.service-section{\n	background:rgb(233 229 229);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.box-text.text-center .service1{\n	height:250px;\n}\n.box-text.text-center .service2{\n	height:180px;\n}\n.box-text.text-center .service3{\n	height:140px;\n}\n.block{\n	border-radius:50px;\n}\n.aboutus{\n	padding-top: 80px!important;\n  padding-bottom: 80px!important;\n}\n.header-main .nav > li > a:hover{\n	color:#446084;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\n	font-size:25px;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\n	font-size:20px;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n\n	border-top-right-radius: 30px;\n	border-top-left-radius: 30px;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	border-bottom-right-radius: 30px;\n	border-bottom-left-radius: 30px;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-20 11:11:30','2022-04-20 11:11:30','',32,'http://demoweblinks.in/ping/?p=463',0,'revision','',0),(464,1,'2022-04-20 11:14:31','2022-04-20 11:14:31','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\tbackground:white;\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n/* .service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n} */\\n.service-section{\\n\\tbackground:rgb(233 229 229);\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n.box-text.text-center .service1{\\n\\theight:250px;\\n}\\n.box-text.text-center .service2{\\n\\theight:180px;\\n}\\n.box-text.text-center .service3{\\n\\theight:140px;\\n}\\n.block{\\n\\tborder-radius:50px;\\n}\\n.aboutus{\\n\\tpadding-top: 80px!important;\\n  padding-bottom: 80px!important;\\n}\\n.header-main .nav > li > a:hover{\\n\\tcolor:#446084;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\\n\\tfont-size:25px;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\\n\\tfont-size:20px;\\n}\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\n\\tborder-top-right-radius: 30px;\\n\\tborder-top-left-radius: 30px;\\n} */\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tborder-radius:30px;\\n/* \\tborder-bottom-right-radius: 30px;\\n\\tborder-bottom-left-radius: 30px; */\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\tmin-height:140px;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-20 11:14:31\"\n    }\n}','','','trash','closed','closed','','18f3aa5c-4a40-4566-9a8e-e93b48365234','','','2022-04-20 11:14:31','2022-04-20 11:14:31','',0,'http://demoweblinks.in/ping/?p=464',0,'customize_changeset','',0),(465,1,'2022-04-20 11:14:31','2022-04-20 11:14:31','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n/* .service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n} */\n.service-section{\n	background:rgb(233 229 229);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.box-text.text-center .service1{\n	height:250px;\n}\n.box-text.text-center .service2{\n	height:180px;\n}\n.box-text.text-center .service3{\n	height:140px;\n}\n.block{\n	border-radius:50px;\n}\n.aboutus{\n	padding-top: 80px!important;\n  padding-bottom: 80px!important;\n}\n.header-main .nav > li > a:hover{\n	color:#446084;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\n	font-size:25px;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\n	font-size:20px;\n}\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n\n	border-top-right-radius: 30px;\n	border-top-left-radius: 30px;\n} */\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	border-radius:30px;\n/* 	border-bottom-right-radius: 30px;\n	border-bottom-left-radius: 30px; */\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n	min-height:140px;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-20 11:14:31','2022-04-20 11:14:31','',32,'http://demoweblinks.in/ping/?p=465',0,'revision','',0),(466,1,'2022-04-20 11:15:07','2022-04-20 11:15:07','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\tbackground:white;\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n/* .service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n} */\\n.service-section{\\n\\tbackground:rgb(233 229 229);\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n.box-text.text-center .service1{\\n\\theight:250px;\\n}\\n.box-text.text-center .service2{\\n\\theight:180px;\\n}\\n.box-text.text-center .service3{\\n\\theight:140px;\\n}\\n.block{\\n\\tborder-radius:50px;\\n}\\n.aboutus{\\n\\tpadding-top: 80px!important;\\n  padding-bottom: 80px!important;\\n}\\n.header-main .nav > li > a:hover{\\n\\tcolor:#446084;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\\n\\tfont-size:25px;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\\n\\tfont-size:20px;\\n}\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\n\\tborder-top-right-radius: 30px;\\n\\tborder-top-left-radius: 30px;\\n} */\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tborder-radius:30px;\\n/* \\tborder-bottom-right-radius: 30px;\\n\\tborder-bottom-left-radius: 30px; */\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\tmin-height:140px;\\n\\tbackground:transparent;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-20 11:15:07\"\n    }\n}','','','trash','closed','closed','','84cd1897-eff6-4a45-b0be-e01693c52fed','','','2022-04-20 11:15:07','2022-04-20 11:15:07','',0,'http://demoweblinks.in/ping/2022/04/20/84cd1897-eff6-4a45-b0be-e01693c52fed/',0,'customize_changeset','',0),(467,1,'2022-04-20 11:15:07','2022-04-20 11:15:07','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n/* .service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n} */\n.service-section{\n	background:rgb(233 229 229);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.box-text.text-center .service1{\n	height:250px;\n}\n.box-text.text-center .service2{\n	height:180px;\n}\n.box-text.text-center .service3{\n	height:140px;\n}\n.block{\n	border-radius:50px;\n}\n.aboutus{\n	padding-top: 80px!important;\n  padding-bottom: 80px!important;\n}\n.header-main .nav > li > a:hover{\n	color:#446084;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\n	font-size:25px;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\n	font-size:20px;\n}\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n\n	border-top-right-radius: 30px;\n	border-top-left-radius: 30px;\n} */\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	border-radius:30px;\n/* 	border-bottom-right-radius: 30px;\n	border-bottom-left-radius: 30px; */\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n	min-height:140px;\n	background:transparent;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-20 11:15:07','2022-04-20 11:15:07','',32,'http://demoweblinks.in/ping/?p=467',0,'revision','',0),(468,1,'2022-04-20 11:17:30','2022-04-20 11:17:30','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section padding=\"80px\" class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section padding=\"80px\" class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Channel Name &amp; Logos</h2>\n\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_color=\"rgb(237, 237, 237)\" bg_radius=\"20\"]\n\n[team_member img=\"312\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_color=\"rgb(237, 237, 237)\" bg_radius=\"20\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_color=\"rgb(237, 237, 237)\" bg_radius=\"20\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_color=\"rgb(237, 237, 237)\" bg_radius=\"20\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_color=\"rgb(237, 237, 237)\" bg_radius=\"20\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_color=\"rgb(237, 237, 237)\" bg_radius=\"20\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_color=\"rgb(237, 237, 237)\" bg_radius=\"20\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_color=\"rgb(237, 237, 237)\" bg_radius=\"20\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_color=\"rgb(237, 237, 237)\" bg_radius=\"20\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_color=\"rgb(237, 237, 237)\" bg_radius=\"20\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section padding=\"80px\" class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Contact us</h2>\n\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(233, 229, 229)\" class=\"counter\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-20 11:17:30','2022-04-20 11:17:30','',6,'http://demoweblinks.in/ping/?p=468',0,'revision','',0),(469,1,'2022-04-20 11:17:48','2022-04-20 11:17:48','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\tbackground:white;\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n/* .service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n} */\\n.service-section{\\n\\tbackground:rgb(233 229 229);\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n.box-text.text-center .service1{\\n\\theight:250px;\\n}\\n.box-text.text-center .service2{\\n\\theight:180px;\\n}\\n.box-text.text-center .service3{\\n\\theight:140px;\\n}\\n.block{\\n\\tborder-radius:50px;\\n}\\n.aboutus{\\n\\tpadding-top: 80px!important;\\n  padding-bottom: 80px!important;\\n}\\n.header-main .nav > li > a:hover{\\n\\tcolor:#446084;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\\n\\tfont-size:25px;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\\n\\tfont-size:20px;\\n}\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\n\\tborder-top-right-radius: 30px;\\n\\tborder-top-left-radius: 30px;\\n} */\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tborder-radius:30px;\\n/* \\tborder-bottom-right-radius: 30px;\\n\\tborder-bottom-left-radius: 30px; */\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\tmin-height:140px;\\n\\tbackground:transparent;\\n}\\n.counter{\\n\\tpadding-bottom:0px;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-20 11:17:48\"\n    }\n}','','','trash','closed','closed','','738ee1aa-1ee1-4d5f-98d4-c571608fda8b','','','2022-04-20 11:17:48','2022-04-20 11:17:48','',0,'http://demoweblinks.in/ping/2022/04/20/738ee1aa-1ee1-4d5f-98d4-c571608fda8b/',0,'customize_changeset','',0),(470,1,'2022-04-20 11:17:48','2022-04-20 11:17:48','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n/* .service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n} */\n.service-section{\n	background:rgb(233 229 229);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.box-text.text-center .service1{\n	height:250px;\n}\n.box-text.text-center .service2{\n	height:180px;\n}\n.box-text.text-center .service3{\n	height:140px;\n}\n.block{\n	border-radius:50px;\n}\n.aboutus{\n	padding-top: 80px!important;\n  padding-bottom: 80px!important;\n}\n.header-main .nav > li > a:hover{\n	color:#446084;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\n	font-size:25px;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\n	font-size:20px;\n}\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n\n	border-top-right-radius: 30px;\n	border-top-left-radius: 30px;\n} */\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	border-radius:30px;\n/* 	border-bottom-right-radius: 30px;\n	border-bottom-left-radius: 30px; */\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n	min-height:140px;\n	background:transparent;\n}\n.counter{\n	padding-bottom:0px;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-20 11:17:48','2022-04-20 11:17:48','',32,'http://demoweblinks.in/ping/?p=470',0,'revision','',0),(471,1,'2022-04-20 11:18:15','2022-04-20 11:18:15','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\tbackground:white;\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n/* .service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n} */\\n.service-section{\\n\\tbackground:rgb(233 229 229);\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n.box-text.text-center .service1{\\n\\theight:250px;\\n}\\n.box-text.text-center .service2{\\n\\theight:180px;\\n}\\n.box-text.text-center .service3{\\n\\theight:140px;\\n}\\n.block{\\n\\tborder-radius:50px;\\n}\\n.aboutus{\\n\\tpadding-top: 80px!important;\\n  padding-bottom: 80px!important;\\n}\\n.header-main .nav > li > a:hover{\\n\\tcolor:#446084;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\\n\\tfont-size:25px;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\\n\\tfont-size:20px;\\n}\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\n\\tborder-top-right-radius: 30px;\\n\\tborder-top-left-radius: 30px;\\n} */\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tborder-radius:30px;\\n/* \\tborder-bottom-right-radius: 30px;\\n\\tborder-bottom-left-radius: 30px; */\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\tmin-height:140px;\\n\\tbackground:transparent;\\n}\\n.counter{\\n\\tpadding-bottom:0px!important;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-20 11:18:15\"\n    }\n}','','','trash','closed','closed','','24a1a7a2-cc3b-4ca9-88dc-cd76f97dca97','','','2022-04-20 11:18:15','2022-04-20 11:18:15','',0,'http://demoweblinks.in/ping/2022/04/20/24a1a7a2-cc3b-4ca9-88dc-cd76f97dca97/',0,'customize_changeset','',0),(472,1,'2022-04-20 11:18:15','2022-04-20 11:18:15','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n/* .service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n} */\n.service-section{\n	background:rgb(233 229 229);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.box-text.text-center .service1{\n	height:250px;\n}\n.box-text.text-center .service2{\n	height:180px;\n}\n.box-text.text-center .service3{\n	height:140px;\n}\n.block{\n	border-radius:50px;\n}\n.aboutus{\n	padding-top: 80px!important;\n  padding-bottom: 80px!important;\n}\n.header-main .nav > li > a:hover{\n	color:#446084;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\n	font-size:25px;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\n	font-size:20px;\n}\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n\n	border-top-right-radius: 30px;\n	border-top-left-radius: 30px;\n} */\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	border-radius:30px;\n/* 	border-bottom-right-radius: 30px;\n	border-bottom-left-radius: 30px; */\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n	min-height:140px;\n	background:transparent;\n}\n.counter{\n	padding-bottom:0px!important;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-20 11:18:15','2022-04-20 11:18:15','',32,'http://demoweblinks.in/ping/?p=472',0,'revision','',0),(473,1,'2022-04-20 11:22:27','2022-04-20 11:22:27','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\tbackground:white;\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n/* .service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n} */\\n.service-section{\\n\\tbackground:rgb(233 229 229);\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n.box-text.text-center .service1{\\n\\theight:250px;\\n}\\n.box-text.text-center .service2{\\n\\theight:180px;\\n}\\n.box-text.text-center .service3{\\n\\theight:140px;\\n}\\n.block{\\n\\tborder-radius:50px;\\n}\\n.aboutus{\\n\\tpadding-top: 80px!important;\\n  padding-bottom: 80px!important;\\n}\\n.header-main .nav > li > a:hover{\\n\\tcolor:#446084;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\\n\\tfont-size:25px;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\\n\\tfont-size:20px;\\n}\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\n\\tborder-top-right-radius: 30px;\\n\\tborder-top-left-radius: 30px;\\n} */\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tborder-radius:30px;\\n/* \\tborder-bottom-right-radius: 30px;\\n\\tborder-bottom-left-radius: 30px; */\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\tmin-height:140px;\\n\\tbackground:transparent;\\n}\\n.counter{\\n\\tpadding-bottom:0px!important;\\n}\\n.ec-counter-items-wrap{\\n\\tpadding-top:80px!important;\\n\\tpadding-bottom:0px!important;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-20 11:22:27\"\n    }\n}','','','trash','closed','closed','','32886468-dd72-4e68-8582-b1806943b262','','','2022-04-20 11:22:27','2022-04-20 11:22:27','',0,'http://demoweblinks.in/ping/?p=473',0,'customize_changeset','',0),(474,1,'2022-04-20 11:22:27','2022-04-20 11:22:27','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n/* .service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n} */\n.service-section{\n	background:rgb(233 229 229);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.box-text.text-center .service1{\n	height:250px;\n}\n.box-text.text-center .service2{\n	height:180px;\n}\n.box-text.text-center .service3{\n	height:140px;\n}\n.block{\n	border-radius:50px;\n}\n.aboutus{\n	padding-top: 80px!important;\n  padding-bottom: 80px!important;\n}\n.header-main .nav > li > a:hover{\n	color:#446084;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\n	font-size:25px;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\n	font-size:20px;\n}\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n\n	border-top-right-radius: 30px;\n	border-top-left-radius: 30px;\n} */\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	border-radius:30px;\n/* 	border-bottom-right-radius: 30px;\n	border-bottom-left-radius: 30px; */\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n	min-height:140px;\n	background:transparent;\n}\n.counter{\n	padding-bottom:0px!important;\n}\n.ec-counter-items-wrap{\n	padding-top:80px!important;\n	padding-bottom:0px!important;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-20 11:22:27','2022-04-20 11:22:27','',32,'http://demoweblinks.in/ping/?p=474',0,'revision','',0),(475,1,'2022-04-20 11:25:50','2022-04-20 11:25:50','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\tbackground:white;\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n/* .service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n} */\\n.service-section{\\n\\tbackground:rgb(233 229 229);\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n.box-text.text-center .service1{\\n\\theight:250px;\\n}\\n.box-text.text-center .service2{\\n\\theight:180px;\\n}\\n.box-text.text-center .service3{\\n\\theight:140px;\\n}\\n.block{\\n\\tborder-radius:50px;\\n}\\n.aboutus{\\n\\tpadding-top: 80px!important;\\n  padding-bottom: 80px!important;\\n}\\n.header-main .nav > li > a:hover{\\n\\tcolor:#446084;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\\n\\tfont-size:25px;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\\n\\tfont-size:20px;\\n}\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\n\\tborder-top-right-radius: 30px;\\n\\tborder-top-left-radius: 30px;\\n} */\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tborder-radius:30px;\\n/* \\tborder-bottom-right-radius: 30px;\\n\\tborder-bottom-left-radius: 30px; */\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\tmin-height:140px;\\n\\tbackground:transparent;\\n}\\n.counter{\\n\\tpadding-bottom:0px!important;\\n}\\n.ec-counter-items-wrap{\\n\\tpadding-top:80px!important;\\n\\tpadding-bottom:0px!important;\\n}\\n.social-icons{\\n\\tpadding-top:50px;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-20 11:25:50\"\n    }\n}','','','trash','closed','closed','','0241c3c5-63d9-4074-8710-f20cc6da5bca','','','2022-04-20 11:25:50','2022-04-20 11:25:50','',0,'http://demoweblinks.in/ping/2022/04/20/0241c3c5-63d9-4074-8710-f20cc6da5bca/',0,'customize_changeset','',0),(476,1,'2022-04-20 11:25:50','2022-04-20 11:25:50','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n/* .service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n} */\n.service-section{\n	background:rgb(233 229 229);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.box-text.text-center .service1{\n	height:250px;\n}\n.box-text.text-center .service2{\n	height:180px;\n}\n.box-text.text-center .service3{\n	height:140px;\n}\n.block{\n	border-radius:50px;\n}\n.aboutus{\n	padding-top: 80px!important;\n  padding-bottom: 80px!important;\n}\n.header-main .nav > li > a:hover{\n	color:#446084;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\n	font-size:25px;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\n	font-size:20px;\n}\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n\n	border-top-right-radius: 30px;\n	border-top-left-radius: 30px;\n} */\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	border-radius:30px;\n/* 	border-bottom-right-radius: 30px;\n	border-bottom-left-radius: 30px; */\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n	min-height:140px;\n	background:transparent;\n}\n.counter{\n	padding-bottom:0px!important;\n}\n.ec-counter-items-wrap{\n	padding-top:80px!important;\n	padding-bottom:0px!important;\n}\n.social-icons{\n	padding-top:50px;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-20 11:25:50','2022-04-20 11:25:50','',32,'http://demoweblinks.in/ping/?p=476',0,'revision','',0),(477,1,'2022-04-20 11:26:15','2022-04-20 11:26:15','{\n    \"flatsome::header_mobile_elements_right\": {\n        \"value\": [],\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-20 11:26:15\"\n    }\n}','','','trash','closed','closed','','a20329b9-a21b-4115-b395-e5816f0821ad','','','2022-04-20 11:26:15','2022-04-20 11:26:15','',0,'http://demoweblinks.in/ping/2022/04/20/a20329b9-a21b-4115-b395-e5816f0821ad/',0,'customize_changeset','',0),(478,1,'2022-04-20 11:32:16','2022-04-20 11:32:16','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section padding=\"80px\" class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section padding=\"80px\" class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Channel Name &amp; Logos</h2>\n\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"312\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section padding=\"80px\" class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Contact us</h2>\n\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(233, 229, 229)\" class=\"counter\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-20 11:32:16','2022-04-20 11:32:16','',6,'http://demoweblinks.in/ping/?p=478',0,'revision','',0),(479,1,'2022-04-22 03:59:46','2022-04-22 03:59:46','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section padding=\"80px\" class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section padding=\"80px\" class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"312\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Contact us</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(233, 229, 229)\" class=\"counter\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-22 03:59:46','2022-04-22 03:59:46','',6,'http://demoweblinks.in/ping/?p=479',0,'revision','',0),(480,1,'2022-04-22 04:00:36','2022-04-22 04:00:36','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"312\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Contact us</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(233, 229, 229)\" class=\"counter\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-22 04:00:36','2022-04-22 04:00:36','',6,'http://demoweblinks.in/ping/?p=480',0,'revision','',0),(481,1,'2022-04-22 04:02:05','2022-04-22 04:02:05','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"312\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Contact us</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(233, 229, 229)\" class=\"counter\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-22 04:02:05','2022-04-22 04:02:05','',6,'http://demoweblinks.in/ping/?p=481',0,'revision','',0),(482,1,'2022-04-22 04:06:14','2022-04-22 04:06:14','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\tbackground:white;\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n/* .service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n} */\\n.service-section{\\n\\tbackground:rgb(233 229 229);\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n.box-text.text-center .service1{\\n\\theight:250px;\\n}\\n.box-text.text-center .service2{\\n\\theight:180px;\\n}\\n.box-text.text-center .service3{\\n\\theight:140px;\\n}\\n.block{\\n\\tborder-radius:50px;\\n}\\n/* .aboutus{\\n\\tpadding-top: 80px!important;\\n  padding-bottom: 80px!important;\\n} */\\n.header-main .nav > li > a:hover{\\n\\tcolor:#446084;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\\n\\tfont-size:25px;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\\n\\tfont-size:20px;\\n}\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\n\\tborder-top-right-radius: 30px;\\n\\tborder-top-left-radius: 30px;\\n} */\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tborder-radius:30px;\\n/* \\tborder-bottom-right-radius: 30px;\\n\\tborder-bottom-left-radius: 30px; */\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\tmin-height:140px;\\n\\tbackground:transparent;\\n}\\n.counter{\\n\\tpadding-bottom:0px!important;\\n}\\n.ec-counter-items-wrap{\\n\\tpadding-top:80px!important;\\n\\tpadding-bottom:0px!important;\\n}\\n.social-icons{\\n\\tpadding-top:50px;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-22 04:06:14\"\n    }\n}','','','trash','closed','closed','','7b84a9d2-9a08-4005-b6e6-f26dd78f5a0c','','','2022-04-22 04:06:14','2022-04-22 04:06:14','',0,'http://demoweblinks.in/ping/2022/04/22/7b84a9d2-9a08-4005-b6e6-f26dd78f5a0c/',0,'customize_changeset','',0),(483,1,'2022-04-22 04:06:14','2022-04-22 04:06:14','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n/* .service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n} */\n.service-section{\n	background:rgb(233 229 229);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.box-text.text-center .service1{\n	height:250px;\n}\n.box-text.text-center .service2{\n	height:180px;\n}\n.box-text.text-center .service3{\n	height:140px;\n}\n.block{\n	border-radius:50px;\n}\n/* .aboutus{\n	padding-top: 80px!important;\n  padding-bottom: 80px!important;\n} */\n.header-main .nav > li > a:hover{\n	color:#446084;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\n	font-size:25px;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\n	font-size:20px;\n}\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n\n	border-top-right-radius: 30px;\n	border-top-left-radius: 30px;\n} */\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	border-radius:30px;\n/* 	border-bottom-right-radius: 30px;\n	border-bottom-left-radius: 30px; */\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n	min-height:140px;\n	background:transparent;\n}\n.counter{\n	padding-bottom:0px!important;\n}\n.ec-counter-items-wrap{\n	padding-top:80px!important;\n	padding-bottom:0px!important;\n}\n.social-icons{\n	padding-top:50px;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-22 04:06:14','2022-04-22 04:06:14','',32,'http://demoweblinks.in/ping/?p=483',0,'revision','',0),(484,1,'2022-04-26 04:21:50','2022-04-26 04:21:50','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(233, 229, 229)\" class=\"counter\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"312\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Contact us</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-26 04:21:50','2022-04-26 04:21:50','',6,'http://demoweblinks.in/ping/?p=484',0,'revision','',0),(485,1,'2022-04-26 04:24:06','2022-04-26 04:24:06','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(233, 229, 228)\" class=\"counter\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"312\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Contact us</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-26 04:24:06','2022-04-26 04:24:06','',6,'http://demoweblinks.in/ping/?p=485',0,'revision','',0),(486,1,'2022-04-26 04:24:45','2022-04-26 04:24:45','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(233, 229, 228)\" class=\"counter\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section bg_color=\"rgb(255, 255, 255)\" class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"312\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Contact us</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-26 04:24:45','2022-04-26 04:24:45','',6,'http://demoweblinks.in/ping/?p=486',0,'revision','',0),(487,1,'2022-04-26 04:29:57','2022-04-26 04:29:57','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(233, 229, 228)\" class=\"counter\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section bg_color=\"rgb(255, 255, 255)\" class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" text_bg=\"rgb(233, 229, 228)\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" text_bg=\"rgb(233, 229, 228)\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" text_bg=\"rgb(233, 229, 228)\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" text_bg=\"rgb(233, 229, 228)\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" text_bg=\"rgb(233, 229, 228)\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" text_bg=\"rgb(233, 229, 228)\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" text_bg=\"rgb(233, 229, 228)\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" text_bg=\"rgb(233, 229, 228)\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" text_bg=\"rgb(233, 229, 228)\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"312\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Contact us</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-26 04:29:57','2022-04-26 04:29:57','',6,'http://demoweblinks.in/ping/?p=487',0,'revision','',0),(488,1,'2022-04-26 04:31:42','2022-04-26 04:31:42','','i','','inherit','open','closed','','i','','','2022-04-26 04:31:42','2022-04-26 04:31:42','',0,'http://demoweblinks.in/ping/wp-content/uploads/2022/04/i.png',0,'attachment','image/png',0),(489,1,'2022-04-26 04:32:36','2022-04-26 04:32:36','','h','','inherit','open','closed','','h','','','2022-04-26 04:32:36','2022-04-26 04:32:36','',0,'http://demoweblinks.in/ping/wp-content/uploads/2022/04/h.png',0,'attachment','image/png',0),(490,1,'2022-04-26 04:33:33','2022-04-26 04:33:33','','g','','inherit','open','closed','','g','','','2022-04-26 04:33:33','2022-04-26 04:33:33','',0,'http://demoweblinks.in/ping/wp-content/uploads/2022/04/g.png',0,'attachment','image/png',0),(491,1,'2022-04-26 04:34:07','2022-04-26 04:34:07','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(233, 229, 228)\" class=\"counter\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section bg_color=\"rgb(255, 255, 255)\" class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" text_bg=\"rgb(233, 229, 228)\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" text_bg=\"rgb(233, 229, 228)\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" text_bg=\"rgb(233, 229, 228)\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" text_bg=\"rgb(233, 229, 228)\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" text_bg=\"rgb(233, 229, 228)\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" text_bg=\"rgb(233, 229, 228)\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"490\" image_width=\"45\" text_bg=\"rgb(233, 229, 228)\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"489\" image_width=\"45\" text_bg=\"rgb(233, 229, 228)\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"488\" image_width=\"45\" text_bg=\"rgb(233, 229, 228)\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"312\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Contact us</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-26 04:34:07','2022-04-26 04:34:07','',6,'http://demoweblinks.in/ping/?p=491',0,'revision','',0),(492,1,'2022-04-26 04:35:51','2022-04-26 04:35:51','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n.team {\\n\\tbackground:rgba(233,229,228,255);\\n}\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\tbackground:white;\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n/* .service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n} */\\n.service-section{\\n\\tbackground:rgb(233 229 229);\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n.box-text.text-center .service1{\\n\\theight:250px;\\n}\\n.box-text.text-center .service2{\\n\\theight:180px;\\n}\\n.box-text.text-center .service3{\\n\\theight:140px;\\n}\\n.block{\\n\\tborder-radius:50px;\\n}\\n/* .aboutus{\\n\\tpadding-top: 80px!important;\\n  padding-bottom: 80px!important;\\n} */\\n.header-main .nav > li > a:hover{\\n\\tcolor:#446084;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\\n\\tfont-size:25px;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\\n\\tfont-size:20px;\\n}\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\n\\tborder-top-right-radius: 30px;\\n\\tborder-top-left-radius: 30px;\\n} */\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tborder-radius:30px;\\n/* \\tborder-bottom-right-radius: 30px;\\n\\tborder-bottom-left-radius: 30px; */\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\tmin-height:140px;\\n\\tbackground:transparent;\\n}\\n.counter{\\n\\tpadding-bottom:0px!important;\\n}\\n.ec-counter-items-wrap{\\n\\tpadding-top:80px!important;\\n\\tpadding-bottom:0px!important;\\n}\\n.social-icons{\\n\\tpadding-top:50px;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-26 04:35:51\"\n    }\n}','','','trash','closed','closed','','9892dddb-2583-4aaf-a727-f638b6dbe342','','','2022-04-26 04:35:51','2022-04-26 04:35:51','',0,'http://demoweblinks.in/ping/?p=492',0,'customize_changeset','',0),(493,1,'2022-04-26 04:35:51','2022-04-26 04:35:51','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n.team {\n	background:rgba(233,229,228,255);\n}\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n	background:white;\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n/* .service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n} */\n.service-section{\n	background:rgb(233 229 229);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.box-text.text-center .service1{\n	height:250px;\n}\n.box-text.text-center .service2{\n	height:180px;\n}\n.box-text.text-center .service3{\n	height:140px;\n}\n.block{\n	border-radius:50px;\n}\n/* .aboutus{\n	padding-top: 80px!important;\n  padding-bottom: 80px!important;\n} */\n.header-main .nav > li > a:hover{\n	color:#446084;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\n	font-size:25px;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\n	font-size:20px;\n}\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n\n	border-top-right-radius: 30px;\n	border-top-left-radius: 30px;\n} */\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	border-radius:30px;\n/* 	border-bottom-right-radius: 30px;\n	border-bottom-left-radius: 30px; */\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n	min-height:140px;\n	background:transparent;\n}\n.counter{\n	padding-bottom:0px!important;\n}\n.ec-counter-items-wrap{\n	padding-top:80px!important;\n	padding-bottom:0px!important;\n}\n.social-icons{\n	padding-top:50px;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-26 04:35:51','2022-04-26 04:35:51','',32,'http://demoweblinks.in/ping/?p=493',0,'revision','',0),(494,1,'2022-04-26 04:36:33','2022-04-26 04:36:33','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n.team {\\n\\tbackground:rgba(233,229,228,255);\\n}\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n/* .service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n} */\\n.service-section{\\n\\tbackground:rgb(233 229 229);\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n.box-text.text-center .service1{\\n\\theight:250px;\\n}\\n.box-text.text-center .service2{\\n\\theight:180px;\\n}\\n.box-text.text-center .service3{\\n\\theight:140px;\\n}\\n.block{\\n\\tborder-radius:50px;\\n}\\n/* .aboutus{\\n\\tpadding-top: 80px!important;\\n  padding-bottom: 80px!important;\\n} */\\n.header-main .nav > li > a:hover{\\n\\tcolor:#446084;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\\n\\tfont-size:25px;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\\n\\tfont-size:20px;\\n}\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\n\\tborder-top-right-radius: 30px;\\n\\tborder-top-left-radius: 30px;\\n} */\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tborder-radius:30px;\\n/* \\tborder-bottom-right-radius: 30px;\\n\\tborder-bottom-left-radius: 30px; */\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\tmin-height:140px;\\n\\tbackground:transparent;\\n}\\n.counter{\\n\\tpadding-bottom:0px!important;\\n}\\n.ec-counter-items-wrap{\\n\\tpadding-top:80px!important;\\n\\tpadding-bottom:0px!important;\\n}\\n.social-icons{\\n\\tpadding-top:50px;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-26 04:36:33\"\n    }\n}','','','trash','closed','closed','','3edfd9c7-f28a-46c4-b010-d0a4970fdf4d','','','2022-04-26 04:36:33','2022-04-26 04:36:33','',0,'http://demoweblinks.in/ping/2022/04/26/3edfd9c7-f28a-46c4-b010-d0a4970fdf4d/',0,'customize_changeset','',0),(495,1,'2022-04-26 04:36:33','2022-04-26 04:36:33','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n.team {\n	background:rgba(233,229,228,255);\n}\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n/* .service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n} */\n.service-section{\n	background:rgb(233 229 229);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.box-text.text-center .service1{\n	height:250px;\n}\n.box-text.text-center .service2{\n	height:180px;\n}\n.box-text.text-center .service3{\n	height:140px;\n}\n.block{\n	border-radius:50px;\n}\n/* .aboutus{\n	padding-top: 80px!important;\n  padding-bottom: 80px!important;\n} */\n.header-main .nav > li > a:hover{\n	color:#446084;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\n	font-size:25px;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\n	font-size:20px;\n}\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n\n	border-top-right-radius: 30px;\n	border-top-left-radius: 30px;\n} */\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	border-radius:30px;\n/* 	border-bottom-right-radius: 30px;\n	border-bottom-left-radius: 30px; */\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n	min-height:140px;\n	background:transparent;\n}\n.counter{\n	padding-bottom:0px!important;\n}\n.ec-counter-items-wrap{\n	padding-top:80px!important;\n	padding-bottom:0px!important;\n}\n.social-icons{\n	padding-top:50px;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-26 04:36:33','2022-04-26 04:36:33','',32,'http://demoweblinks.in/ping/?p=495',0,'revision','',0),(496,1,'2022-04-26 04:37:59','2022-04-26 04:37:59','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n.team {\\n\\tbackground:rgba(233,229,228,255);\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n/* .service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n} */\\n.service-section{\\n\\tbackground:rgb(233 229 229);\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n.box-text.text-center .service1{\\n\\theight:250px;\\n}\\n.box-text.text-center .service2{\\n\\theight:180px;\\n}\\n.box-text.text-center .service3{\\n\\theight:140px;\\n}\\n.block{\\n\\tborder-radius:50px;\\n}\\n/* .aboutus{\\n\\tpadding-top: 80px!important;\\n  padding-bottom: 80px!important;\\n} */\\n.header-main .nav > li > a:hover{\\n\\tcolor:#446084;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\\n\\tfont-size:25px;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\\n\\tfont-size:20px;\\n}\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\n\\tborder-top-right-radius: 30px;\\n\\tborder-top-left-radius: 30px;\\n} */\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tborder-radius:30px;\\n/* \\tborder-bottom-right-radius: 30px;\\n\\tborder-bottom-left-radius: 30px; */\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\tmin-height:140px;\\n\\tbackground:transparent;\\n}\\n.counter{\\n\\tpadding-bottom:0px!important;\\n}\\n.ec-counter-items-wrap{\\n\\tpadding-top:80px!important;\\n\\tpadding-bottom:0px!important;\\n}\\n.social-icons{\\n\\tpadding-top:50px;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-26 04:37:59\"\n    }\n}','','','trash','closed','closed','','a4c33a43-add4-4a1f-84e3-e111f9112e94','','','2022-04-26 04:37:59','2022-04-26 04:37:59','',0,'http://demoweblinks.in/ping/2022/04/26/a4c33a43-add4-4a1f-84e3-e111f9112e94/',0,'customize_changeset','',0),(497,1,'2022-04-26 04:37:59','2022-04-26 04:37:59','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n.team {\n	background:rgba(233,229,228,255);\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n/* .service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n} */\n.service-section{\n	background:rgb(233 229 229);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.box-text.text-center .service1{\n	height:250px;\n}\n.box-text.text-center .service2{\n	height:180px;\n}\n.box-text.text-center .service3{\n	height:140px;\n}\n.block{\n	border-radius:50px;\n}\n/* .aboutus{\n	padding-top: 80px!important;\n  padding-bottom: 80px!important;\n} */\n.header-main .nav > li > a:hover{\n	color:#446084;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\n	font-size:25px;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\n	font-size:20px;\n}\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n\n	border-top-right-radius: 30px;\n	border-top-left-radius: 30px;\n} */\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	border-radius:30px;\n/* 	border-bottom-right-radius: 30px;\n	border-bottom-left-radius: 30px; */\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n	min-height:140px;\n	background:transparent;\n}\n.counter{\n	padding-bottom:0px!important;\n}\n.ec-counter-items-wrap{\n	padding-top:80px!important;\n	padding-bottom:0px!important;\n}\n.social-icons{\n	padding-top:50px;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-26 04:37:59','2022-04-26 04:37:59','',32,'http://demoweblinks.in/ping/?p=497',0,'revision','',0),(498,1,'2022-04-26 04:39:20','2022-04-26 04:39:20','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n.team {\\n\\t    padding-top: 30px;\\n    padding-bottom: 30px;\\nbackground:rgba(233,229,228,255);\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n\\tborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n/* .service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n} */\\n.service-section{\\n\\tbackground:rgb(233 229 229);\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n.box-text.text-center .service1{\\n\\theight:250px;\\n}\\n.box-text.text-center .service2{\\n\\theight:180px;\\n}\\n.box-text.text-center .service3{\\n\\theight:140px;\\n}\\n.block{\\n\\tborder-radius:50px;\\n}\\n/* .aboutus{\\n\\tpadding-top: 80px!important;\\n  padding-bottom: 80px!important;\\n} */\\n.header-main .nav > li > a:hover{\\n\\tcolor:#446084;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\\n\\tfont-size:25px;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\\n\\tfont-size:20px;\\n}\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\n\\tborder-top-right-radius: 30px;\\n\\tborder-top-left-radius: 30px;\\n} */\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tborder-radius:30px;\\n/* \\tborder-bottom-right-radius: 30px;\\n\\tborder-bottom-left-radius: 30px; */\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\tmin-height:140px;\\n\\tbackground:transparent;\\n}\\n.counter{\\n\\tpadding-bottom:0px!important;\\n}\\n.ec-counter-items-wrap{\\n\\tpadding-top:80px!important;\\n\\tpadding-bottom:0px!important;\\n}\\n.social-icons{\\n\\tpadding-top:50px;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-26 04:39:20\"\n    }\n}','','','trash','closed','closed','','06ca0be5-9b88-480e-b54e-47ebc0433741','','','2022-04-26 04:39:20','2022-04-26 04:39:20','',0,'http://demoweblinks.in/ping/2022/04/26/06ca0be5-9b88-480e-b54e-47ebc0433741/',0,'customize_changeset','',0),(499,1,'2022-04-26 04:39:20','2022-04-26 04:39:20','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n.team {\n	    padding-top: 30px;\n    padding-bottom: 30px;\nbackground:rgba(233,229,228,255);\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n	border-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n/* .service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n} */\n.service-section{\n	background:rgb(233 229 229);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.box-text.text-center .service1{\n	height:250px;\n}\n.box-text.text-center .service2{\n	height:180px;\n}\n.box-text.text-center .service3{\n	height:140px;\n}\n.block{\n	border-radius:50px;\n}\n/* .aboutus{\n	padding-top: 80px!important;\n  padding-bottom: 80px!important;\n} */\n.header-main .nav > li > a:hover{\n	color:#446084;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\n	font-size:25px;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\n	font-size:20px;\n}\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n\n	border-top-right-radius: 30px;\n	border-top-left-radius: 30px;\n} */\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	border-radius:30px;\n/* 	border-bottom-right-radius: 30px;\n	border-bottom-left-radius: 30px; */\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n	min-height:140px;\n	background:transparent;\n}\n.counter{\n	padding-bottom:0px!important;\n}\n.ec-counter-items-wrap{\n	padding-top:80px!important;\n	padding-bottom:0px!important;\n}\n.social-icons{\n	padding-top:50px;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-26 04:39:20','2022-04-26 04:39:20','',32,'http://demoweblinks.in/ping/?p=499',0,'revision','',0),(500,1,'2022-04-26 04:39:59','2022-04-26 04:39:59','','f','','inherit','open','closed','','f','','','2022-04-26 04:39:59','2022-04-26 04:39:59','',0,'http://demoweblinks.in/ping/wp-content/uploads/2022/04/f.png',0,'attachment','image/png',0),(501,1,'2022-04-26 04:40:33','2022-04-26 04:40:33','','e','','inherit','open','closed','','e','','','2022-04-26 04:40:33','2022-04-26 04:40:33','',0,'http://demoweblinks.in/ping/wp-content/uploads/2022/04/e.png',0,'attachment','image/png',0),(502,1,'2022-04-26 04:40:58','2022-04-26 04:40:58','','d','','inherit','open','closed','','d','','','2022-04-26 04:40:58','2022-04-26 04:40:58','',0,'http://demoweblinks.in/ping/wp-content/uploads/2022/04/d.png',0,'attachment','image/png',0),(503,1,'2022-04-26 04:41:15','2022-04-26 04:41:15','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(233, 229, 228)\" class=\"counter\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section bg_color=\"rgb(255, 255, 255)\" class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" text_bg=\"rgb(233, 229, 228)\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" text_bg=\"rgb(233, 229, 228)\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"71\" text_bg=\"rgb(233, 229, 228)\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"502\" image_width=\"45\" text_bg=\"rgb(233, 229, 228)\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"501\" image_width=\"45\" text_bg=\"rgb(233, 229, 228)\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"500\" image_width=\"45\" text_bg=\"rgb(233, 229, 228)\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"490\" image_width=\"45\" text_bg=\"rgb(233, 229, 228)\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"489\" image_width=\"45\" text_bg=\"rgb(233, 229, 228)\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"488\" image_width=\"45\" text_bg=\"rgb(233, 229, 228)\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"312\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Contact us</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-26 04:41:15','2022-04-26 04:41:15','',6,'http://demoweblinks.in/ping/?p=503',0,'revision','',0),(504,1,'2022-04-26 04:41:26','2022-04-26 04:41:26','','c','','inherit','open','closed','','c','','','2022-04-26 04:41:26','2022-04-26 04:41:26','',0,'http://demoweblinks.in/ping/wp-content/uploads/2022/04/c.png',0,'attachment','image/png',0),(505,1,'2022-04-26 04:41:48','2022-04-26 04:41:48','','b','','inherit','open','closed','','b','','','2022-04-26 04:41:48','2022-04-26 04:41:48','',0,'http://demoweblinks.in/ping/wp-content/uploads/2022/04/b.png',0,'attachment','image/png',0),(506,1,'2022-04-26 04:42:22','2022-04-26 04:42:22','','a','','inherit','open','closed','','a','','','2022-04-26 04:42:22','2022-04-26 04:42:22','',0,'http://demoweblinks.in/ping/wp-content/uploads/2022/04/a.png',0,'attachment','image/png',0),(507,1,'2022-04-26 04:42:49','2022-04-26 04:42:49','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(233, 229, 228)\" class=\"counter\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section bg_color=\"rgb(255, 255, 255)\" class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"506\" image_width=\"45\" text_bg=\"rgb(233, 229, 228)\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"505\" image_width=\"45\" text_bg=\"rgb(233, 229, 228)\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"504\" image_width=\"45\" text_bg=\"rgb(233, 229, 228)\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"502\" image_width=\"45\" text_bg=\"rgb(233, 229, 228)\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"501\" image_width=\"45\" text_bg=\"rgb(233, 229, 228)\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"500\" image_width=\"45\" text_bg=\"rgb(233, 229, 228)\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"490\" image_width=\"45\" text_bg=\"rgb(233, 229, 228)\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"489\" image_width=\"45\" text_bg=\"rgb(233, 229, 228)\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"488\" image_width=\"45\" text_bg=\"rgb(233, 229, 228)\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"312\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Contact us</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-26 04:42:49','2022-04-26 04:42:49','',6,'http://demoweblinks.in/ping/?p=507',0,'revision','',0),(508,1,'2022-04-26 04:45:08','2022-04-26 04:45:08','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(233, 229, 228)\" class=\"counter\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section bg_color=\"rgb(255, 255, 255)\" class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"506\" image_width=\"37\" text_bg=\"rgb(233, 229, 228)\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"505\" image_width=\"45\" text_bg=\"rgb(233, 229, 228)\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"504\" image_width=\"53\" text_bg=\"rgb(233, 229, 228)\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"502\" image_width=\"45\" text_bg=\"rgb(233, 229, 228)\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"501\" image_width=\"45\" text_bg=\"rgb(233, 229, 228)\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"500\" image_width=\"45\" text_bg=\"rgb(233, 229, 228)\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"490\" image_width=\"45\" text_bg=\"rgb(233, 229, 228)\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"489\" image_width=\"47\" text_bg=\"rgb(233, 229, 228)\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"488\" image_width=\"45\" text_bg=\"rgb(233, 229, 228)\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"312\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Contact us</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-26 04:45:08','2022-04-26 04:45:08','',6,'http://demoweblinks.in/ping/?p=508',0,'revision','',0),(509,1,'2022-04-26 05:00:37','2022-04-26 05:00:37','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n.team {\\n\\t    padding-top: 30px;\\n    padding-bottom: 30px;\\nbackground:#f8f8fa;\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n\\tborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n/* .service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n} */\\n.service-section{\\n\\tbackground:rgb(233 229 229);\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n.box-text.text-center .service1{\\n\\theight:250px;\\n}\\n.box-text.text-center .service2{\\n\\theight:180px;\\n}\\n.box-text.text-center .service3{\\n\\theight:140px;\\n}\\n.block{\\n\\tborder-radius:50px;\\n}\\n/* .aboutus{\\n\\tpadding-top: 80px!important;\\n  padding-bottom: 80px!important;\\n} */\\n.header-main .nav > li > a:hover{\\n\\tcolor:#446084;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\\n\\tfont-size:25px;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\\n\\tfont-size:20px;\\n}\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\n\\tborder-top-right-radius: 30px;\\n\\tborder-top-left-radius: 30px;\\n} */\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tborder-radius:30px;\\n/* \\tborder-bottom-right-radius: 30px;\\n\\tborder-bottom-left-radius: 30px; */\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\tmin-height:140px;\\n\\tbackground:transparent;\\n}\\n.counter{\\n\\tpadding-bottom:0px!important;\\n}\\n.ec-counter-items-wrap{\\n\\tpadding-top:80px!important;\\n\\tpadding-bottom:0px!important;\\n}\\n.social-icons{\\n\\tpadding-top:50px;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-26 05:00:37\"\n    }\n}','','','trash','closed','closed','','27894049-223c-4099-b6b9-c7bc6d0ea20a','','','2022-04-26 05:00:37','2022-04-26 05:00:37','',0,'http://demoweblinks.in/ping/2022/04/26/27894049-223c-4099-b6b9-c7bc6d0ea20a/',0,'customize_changeset','',0),(510,1,'2022-04-26 05:00:37','2022-04-26 05:00:37','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n.team {\n	    padding-top: 30px;\n    padding-bottom: 30px;\nbackground:#f8f8fa;\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n	border-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n/* .service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n} */\n.service-section{\n	background:rgb(233 229 229);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.box-text.text-center .service1{\n	height:250px;\n}\n.box-text.text-center .service2{\n	height:180px;\n}\n.box-text.text-center .service3{\n	height:140px;\n}\n.block{\n	border-radius:50px;\n}\n/* .aboutus{\n	padding-top: 80px!important;\n  padding-bottom: 80px!important;\n} */\n.header-main .nav > li > a:hover{\n	color:#446084;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\n	font-size:25px;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\n	font-size:20px;\n}\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n\n	border-top-right-radius: 30px;\n	border-top-left-radius: 30px;\n} */\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	border-radius:30px;\n/* 	border-bottom-right-radius: 30px;\n	border-bottom-left-radius: 30px; */\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n	min-height:140px;\n	background:transparent;\n}\n.counter{\n	padding-bottom:0px!important;\n}\n.ec-counter-items-wrap{\n	padding-top:80px!important;\n	padding-bottom:0px!important;\n}\n.social-icons{\n	padding-top:50px;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-26 05:00:37','2022-04-26 05:00:37','',32,'http://demoweblinks.in/ping/?p=510',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (511,1,'2022-04-26 05:02:07','2022-04-26 05:02:07','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(233, 229, 228)\" class=\"counter\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section bg_color=\"rgb(255, 255, 255)\" class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"506\" image_width=\"37\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"505\" image_width=\"45\" text_bg=\"rgb(233, 229, 228)\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"504\" image_width=\"53\" text_bg=\"rgb(233, 229, 228)\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"502\" image_width=\"45\" text_bg=\"rgb(233, 229, 228)\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"501\" image_width=\"45\" text_bg=\"rgb(233, 229, 228)\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"500\" image_width=\"45\" text_bg=\"rgb(233, 229, 228)\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"490\" image_width=\"45\" text_bg=\"rgb(233, 229, 228)\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"489\" image_width=\"47\" text_bg=\"rgb(233, 229, 228)\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"488\" image_width=\"45\" text_bg=\"rgb(233, 229, 228)\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"312\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Contact us</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-26 05:02:07','2022-04-26 05:02:07','',6,'http://demoweblinks.in/ping/?p=511',0,'revision','',0),(512,1,'2022-04-26 05:04:29','2022-04-26 05:04:29','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(233, 229, 228)\" class=\"counter\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section bg_color=\"rgb(255, 255, 255)\" class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"506\" image_width=\"37\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"505\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"504\" image_width=\"53\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"502\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"501\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"500\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"490\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"489\" image_width=\"47\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"488\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"312\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Contact us</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-26 05:04:29','2022-04-26 05:04:29','',6,'http://demoweblinks.in/ping/?p=512',0,'revision','',0),(513,1,'2022-04-26 05:05:01','2022-04-26 05:05:01','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n.team {\\n\\t box-shadow: 5px 10px #888888;\\n\\t    padding-top: 30px;\\n    padding-bottom: 30px;\\nbackground:#f8f8fa;\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n\\tborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n/* .service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n} */\\n.service-section{\\n\\tbackground:rgb(233 229 229);\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n.box-text.text-center .service1{\\n\\theight:250px;\\n}\\n.box-text.text-center .service2{\\n\\theight:180px;\\n}\\n.box-text.text-center .service3{\\n\\theight:140px;\\n}\\n.block{\\n\\tborder-radius:50px;\\n}\\n/* .aboutus{\\n\\tpadding-top: 80px!important;\\n  padding-bottom: 80px!important;\\n} */\\n.header-main .nav > li > a:hover{\\n\\tcolor:#446084;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\\n\\tfont-size:25px;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\\n\\tfont-size:20px;\\n}\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\n\\tborder-top-right-radius: 30px;\\n\\tborder-top-left-radius: 30px;\\n} */\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tborder-radius:30px;\\n/* \\tborder-bottom-right-radius: 30px;\\n\\tborder-bottom-left-radius: 30px; */\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\tmin-height:140px;\\n\\tbackground:transparent;\\n}\\n.counter{\\n\\tpadding-bottom:0px!important;\\n}\\n.ec-counter-items-wrap{\\n\\tpadding-top:80px!important;\\n\\tpadding-bottom:0px!important;\\n}\\n.social-icons{\\n\\tpadding-top:50px;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-26 05:05:01\"\n    }\n}','','','trash','closed','closed','','a224bc7b-2920-4143-b3da-42138c6b9314','','','2022-04-26 05:05:01','2022-04-26 05:05:01','',0,'http://demoweblinks.in/ping/2022/04/26/a224bc7b-2920-4143-b3da-42138c6b9314/',0,'customize_changeset','',0),(514,1,'2022-04-26 05:05:01','2022-04-26 05:05:01','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n.team {\n	 box-shadow: 5px 10px #888888;\n	    padding-top: 30px;\n    padding-bottom: 30px;\nbackground:#f8f8fa;\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n	border-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n/* .service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n} */\n.service-section{\n	background:rgb(233 229 229);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.box-text.text-center .service1{\n	height:250px;\n}\n.box-text.text-center .service2{\n	height:180px;\n}\n.box-text.text-center .service3{\n	height:140px;\n}\n.block{\n	border-radius:50px;\n}\n/* .aboutus{\n	padding-top: 80px!important;\n  padding-bottom: 80px!important;\n} */\n.header-main .nav > li > a:hover{\n	color:#446084;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\n	font-size:25px;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\n	font-size:20px;\n}\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n\n	border-top-right-radius: 30px;\n	border-top-left-radius: 30px;\n} */\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	border-radius:30px;\n/* 	border-bottom-right-radius: 30px;\n	border-bottom-left-radius: 30px; */\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n	min-height:140px;\n	background:transparent;\n}\n.counter{\n	padding-bottom:0px!important;\n}\n.ec-counter-items-wrap{\n	padding-top:80px!important;\n	padding-bottom:0px!important;\n}\n.social-icons{\n	padding-top:50px;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-26 05:05:01','2022-04-26 05:05:01','',32,'http://demoweblinks.in/ping/?p=514',0,'revision','',0),(515,1,'2022-04-26 05:05:58','2022-04-26 05:05:58','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n.team {\\n\\t box-shadow: 10px 15px #d1d1d157;\\n\\t    padding-top: 30px;\\n    padding-bottom: 30px;\\nbackground:#f8f8fa;\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n\\tborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n/* .service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n} */\\n.service-section{\\n\\tbackground:rgb(233 229 229);\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n.box-text.text-center .service1{\\n\\theight:250px;\\n}\\n.box-text.text-center .service2{\\n\\theight:180px;\\n}\\n.box-text.text-center .service3{\\n\\theight:140px;\\n}\\n.block{\\n\\tborder-radius:50px;\\n}\\n/* .aboutus{\\n\\tpadding-top: 80px!important;\\n  padding-bottom: 80px!important;\\n} */\\n.header-main .nav > li > a:hover{\\n\\tcolor:#446084;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\\n\\tfont-size:25px;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\\n\\tfont-size:20px;\\n}\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\n\\tborder-top-right-radius: 30px;\\n\\tborder-top-left-radius: 30px;\\n} */\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tborder-radius:30px;\\n/* \\tborder-bottom-right-radius: 30px;\\n\\tborder-bottom-left-radius: 30px; */\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\tmin-height:140px;\\n\\tbackground:transparent;\\n}\\n.counter{\\n\\tpadding-bottom:0px!important;\\n}\\n.ec-counter-items-wrap{\\n\\tpadding-top:80px!important;\\n\\tpadding-bottom:0px!important;\\n}\\n.social-icons{\\n\\tpadding-top:50px;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-26 05:05:58\"\n    }\n}','','','trash','closed','closed','','8e067dd9-f862-4659-a88e-8b792119ace8','','','2022-04-26 05:05:58','2022-04-26 05:05:58','',0,'http://demoweblinks.in/ping/2022/04/26/8e067dd9-f862-4659-a88e-8b792119ace8/',0,'customize_changeset','',0),(516,1,'2022-04-26 05:05:58','2022-04-26 05:05:58','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n.team {\n	 box-shadow: 10px 15px #d1d1d157;\n	    padding-top: 30px;\n    padding-bottom: 30px;\nbackground:#f8f8fa;\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n	border-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n/* .service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n} */\n.service-section{\n	background:rgb(233 229 229);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.box-text.text-center .service1{\n	height:250px;\n}\n.box-text.text-center .service2{\n	height:180px;\n}\n.box-text.text-center .service3{\n	height:140px;\n}\n.block{\n	border-radius:50px;\n}\n/* .aboutus{\n	padding-top: 80px!important;\n  padding-bottom: 80px!important;\n} */\n.header-main .nav > li > a:hover{\n	color:#446084;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\n	font-size:25px;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\n	font-size:20px;\n}\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n\n	border-top-right-radius: 30px;\n	border-top-left-radius: 30px;\n} */\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	border-radius:30px;\n/* 	border-bottom-right-radius: 30px;\n	border-bottom-left-radius: 30px; */\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n	min-height:140px;\n	background:transparent;\n}\n.counter{\n	padding-bottom:0px!important;\n}\n.ec-counter-items-wrap{\n	padding-top:80px!important;\n	padding-bottom:0px!important;\n}\n.social-icons{\n	padding-top:50px;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-26 05:05:58','2022-04-26 05:05:58','',32,'http://demoweblinks.in/ping/?p=516',0,'revision','',0),(517,1,'2022-04-26 05:06:58','2022-04-26 05:06:58','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(233, 229, 228)\" class=\"counter\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section bg_color=\"rgb(255, 255, 255)\" class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"506\" image_width=\"37\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"505\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"504\" image_width=\"53\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"502\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"501\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"500\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"490\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"489\" image_width=\"47\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"488\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Youtube Channels</h2>\n\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"312\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Contact us</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-26 05:06:58','2022-04-26 05:06:58','',6,'http://demoweblinks.in/ping/?p=517',0,'revision','',0),(518,1,'2022-04-26 05:08:03','2022-04-26 05:08:03','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(233, 229, 228)\" class=\"counter\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section bg_color=\"rgb(255, 255, 255)\" class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"506\" image_width=\"37\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"505\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"504\" image_width=\"53\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"502\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"501\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"500\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"490\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"489\" image_width=\"47\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"488\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Youtube Channels</h2>\n\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"312\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Contact us</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-26 05:08:03','2022-04-26 05:08:03','',6,'http://demoweblinks.in/ping/?p=518',0,'revision','',0),(519,1,'2022-04-26 05:36:09','2022-04-26 05:36:09','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n.network{\\n\\tbackground:#f5f5f5;\\n}\\n.team {\\n\\t box-shadow: 10px 15px #d1d1d157;\\n\\t    padding-top: 30px;\\n    padding-bottom: 30px;\\nbackground:#f8f8fa;\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n\\tborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n/* .service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n} */\\n.service-section{\\n\\tbackground:rgb(233 229 229);\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n.box-text.text-center .service1{\\n\\theight:250px;\\n}\\n.box-text.text-center .service2{\\n\\theight:180px;\\n}\\n.box-text.text-center .service3{\\n\\theight:140px;\\n}\\n.block{\\n\\tborder-radius:50px;\\n}\\n/* .aboutus{\\n\\tpadding-top: 80px!important;\\n  padding-bottom: 80px!important;\\n} */\\n.header-main .nav > li > a:hover{\\n\\tcolor:#446084;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\\n\\tfont-size:25px;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\\n\\tfont-size:20px;\\n}\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\n\\tborder-top-right-radius: 30px;\\n\\tborder-top-left-radius: 30px;\\n} */\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tborder-radius:30px;\\n/* \\tborder-bottom-right-radius: 30px;\\n\\tborder-bottom-left-radius: 30px; */\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\tmin-height:140px;\\n\\tbackground:transparent;\\n}\\n.counter{\\n\\tpadding-bottom:0px!important;\\n}\\n.ec-counter-items-wrap{\\n\\tpadding-top:80px!important;\\n\\tpadding-bottom:0px!important;\\n}\\n.social-icons{\\n\\tpadding-top:50px;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-26 05:36:09\"\n    }\n}','','','trash','closed','closed','','1fed9b3e-ffaf-48d6-9422-256aa2d5891a','','','2022-04-26 05:36:09','2022-04-26 05:36:09','',0,'http://demoweblinks.in/ping/?p=519',0,'customize_changeset','',0),(520,1,'2022-04-26 05:36:09','2022-04-26 05:36:09','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n.network{\n	background:#f5f5f5;\n}\n.team {\n	 box-shadow: 10px 15px #d1d1d157;\n	    padding-top: 30px;\n    padding-bottom: 30px;\nbackground:#f8f8fa;\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n	border-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n/* .service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n} */\n.service-section{\n	background:rgb(233 229 229);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.box-text.text-center .service1{\n	height:250px;\n}\n.box-text.text-center .service2{\n	height:180px;\n}\n.box-text.text-center .service3{\n	height:140px;\n}\n.block{\n	border-radius:50px;\n}\n/* .aboutus{\n	padding-top: 80px!important;\n  padding-bottom: 80px!important;\n} */\n.header-main .nav > li > a:hover{\n	color:#446084;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\n	font-size:25px;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\n	font-size:20px;\n}\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n\n	border-top-right-radius: 30px;\n	border-top-left-radius: 30px;\n} */\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	border-radius:30px;\n/* 	border-bottom-right-radius: 30px;\n	border-bottom-left-radius: 30px; */\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n	min-height:140px;\n	background:transparent;\n}\n.counter{\n	padding-bottom:0px!important;\n}\n.ec-counter-items-wrap{\n	padding-top:80px!important;\n	padding-bottom:0px!important;\n}\n.social-icons{\n	padding-top:50px;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-26 05:36:09','2022-04-26 05:36:09','',32,'http://demoweblinks.in/ping/?p=520',0,'revision','',0),(521,1,'2022-04-26 05:39:10','2022-04-26 05:39:10','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(233, 229, 228)\" padding=\"0px\" class=\"counter\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section bg_color=\"rgb(255, 255, 255)\" class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"506\" image_width=\"37\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"505\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"504\" image_width=\"53\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"502\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"501\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"500\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"490\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"489\" image_width=\"47\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"488\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Youtube Channels</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"312\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Contact us</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-26 05:39:10','2022-04-26 05:39:10','',6,'http://demoweblinks.in/ping/?p=521',0,'revision','',0),(522,1,'2022-04-27 03:41:54','2022-04-27 03:41:54','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n.network{\\n\\tbackground:#f5f5f5;\\n}\\n.team {\\n\\t box-shadow: 10px 15px #d1d1d157;\\n\\t    padding-top: 30px;\\n    padding-bottom: 30px;\\nbackground:#f8f8fa;\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n\\tborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n/* .service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n} */\\n.service-section{\\n\\tbackground:rgb(233 229 229);\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n.box-text.text-center .service1{\\n\\theight:250px;\\n}\\n.box-text.text-center .service2{\\n\\theight:180px;\\n}\\n.box-text.text-center .service3{\\n\\theight:140px;\\n}\\n.block{\\n\\tborder-radius:50px;\\n}\\n/* .aboutus{\\n\\tpadding-top: 80px!important;\\n  padding-bottom: 80px!important;\\n} */\\n.header-main .nav > li > a:hover{\\n\\tcolor:#446084;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\\n\\tfont-size:25px;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\\n\\tfont-size:20px;\\n}\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\n\\tborder-top-right-radius: 30px;\\n\\tborder-top-left-radius: 30px;\\n} */\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tborder-radius:30px;\\n/* \\tborder-bottom-right-radius: 30px;\\n\\tborder-bottom-left-radius: 30px; */\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\tmin-height:140px;\\n\\tbackground:transparent;\\n}\\n.counter{\\n\\tpadding-bottom:0px!important;\\n}\\n.ec-counter-items-wrap{\\n\\tpadding-top:80px!important;\\n\\tpadding-bottom:0px!important;\\n}\\n.social-icons{\\n\\tpadding-top:50px;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container{\\n\\tmin-height: 170px;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-27 03:41:54\"\n    }\n}','','','trash','closed','closed','','c6115898-c25c-4c7d-8a57-f5c37a470c87','','','2022-04-27 03:41:54','2022-04-27 03:41:54','',0,'https://demoweblinks.in/ping/?p=522',0,'customize_changeset','',0),(523,1,'2022-04-27 03:41:54','2022-04-27 03:41:54','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n.network{\n	background:#f5f5f5;\n}\n.team {\n	 box-shadow: 10px 15px #d1d1d157;\n	    padding-top: 30px;\n    padding-bottom: 30px;\nbackground:#f8f8fa;\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n	border-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n/* .service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n} */\n.service-section{\n	background:rgb(233 229 229);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.box-text.text-center .service1{\n	height:250px;\n}\n.box-text.text-center .service2{\n	height:180px;\n}\n.box-text.text-center .service3{\n	height:140px;\n}\n.block{\n	border-radius:50px;\n}\n/* .aboutus{\n	padding-top: 80px!important;\n  padding-bottom: 80px!important;\n} */\n.header-main .nav > li > a:hover{\n	color:#446084;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\n	font-size:25px;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\n	font-size:20px;\n}\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n\n	border-top-right-radius: 30px;\n	border-top-left-radius: 30px;\n} */\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	border-radius:30px;\n/* 	border-bottom-right-radius: 30px;\n	border-bottom-left-radius: 30px; */\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n	min-height:140px;\n	background:transparent;\n}\n.counter{\n	padding-bottom:0px!important;\n}\n.ec-counter-items-wrap{\n	padding-top:80px!important;\n	padding-bottom:0px!important;\n}\n.social-icons{\n	padding-top:50px;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container{\n	min-height: 170px;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-27 03:41:54','2022-04-27 03:41:54','',32,'https://demoweblinks.in/ping/?p=523',0,'revision','',0),(524,1,'2022-04-27 03:45:49','2022-04-27 03:45:49','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n.network{\\n\\tbackground:#f5f5f5;\\n}\\n.team {\\n\\t box-shadow: 10px 15px #d1d1d157;\\n\\t    padding-top: 30px;\\n    padding-bottom: 30px;\\nbackground:#f8f8fa;\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n\\tborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n/* .service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n} */\\n.service-section{\\n\\tbackground:rgb(233 229 229);\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n.box-text.text-center .service1{\\n\\theight:250px;\\n}\\n.box-text.text-center .service2{\\n\\theight:180px;\\n}\\n.box-text.text-center .service3{\\n\\theight:140px;\\n}\\n.block{\\n\\tborder-radius:50px;\\n}\\n/* .aboutus{\\n\\tpadding-top: 80px!important;\\n  padding-bottom: 80px!important;\\n} */\\n.header-main .nav > li > a:hover{\\n\\tcolor:#446084;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\\n\\tfont-size:25px;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\\n\\tfont-size:20px;\\n}\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\n\\tborder-top-right-radius: 30px;\\n\\tborder-top-left-radius: 30px;\\n} */\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tborder-radius:30px;\\n/* \\tborder-bottom-right-radius: 30px;\\n\\tborder-bottom-left-radius: 30px; */\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\tmin-height:140px;\\n\\tbackground:transparent;\\n}\\n.counter{\\n\\tpadding-bottom:0px!important;\\n}\\n.ec-counter-items-wrap{\\n\\tpadding-top:80px!important;\\n\\tpadding-bottom:0px!important;\\n}\\n.social-icons{\\n\\tpadding-top:50px;\\n}\\n\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-top-container{\\n\\tmin-height: 170px;\\n} */\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-27 03:45:49\"\n    }\n}','','','trash','closed','closed','','32ab9d3b-89ff-4278-9f85-a96ad35e9942','','','2022-04-27 03:45:49','2022-04-27 03:45:49','',0,'https://demoweblinks.in/ping/2022/04/27/32ab9d3b-89ff-4278-9f85-a96ad35e9942/',0,'customize_changeset','',0),(525,1,'2022-04-27 03:45:49','2022-04-27 03:45:49','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n.network{\n	background:#f5f5f5;\n}\n.team {\n	 box-shadow: 10px 15px #d1d1d157;\n	    padding-top: 30px;\n    padding-bottom: 30px;\nbackground:#f8f8fa;\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n	border-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n/* .service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n} */\n.service-section{\n	background:rgb(233 229 229);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.box-text.text-center .service1{\n	height:250px;\n}\n.box-text.text-center .service2{\n	height:180px;\n}\n.box-text.text-center .service3{\n	height:140px;\n}\n.block{\n	border-radius:50px;\n}\n/* .aboutus{\n	padding-top: 80px!important;\n  padding-bottom: 80px!important;\n} */\n.header-main .nav > li > a:hover{\n	color:#446084;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\n	font-size:25px;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\n	font-size:20px;\n}\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n\n	border-top-right-radius: 30px;\n	border-top-left-radius: 30px;\n} */\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	border-radius:30px;\n/* 	border-bottom-right-radius: 30px;\n	border-bottom-left-radius: 30px; */\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n	min-height:140px;\n	background:transparent;\n}\n.counter{\n	padding-bottom:0px!important;\n}\n.ec-counter-items-wrap{\n	padding-top:80px!important;\n	padding-bottom:0px!important;\n}\n.social-icons{\n	padding-top:50px;\n}\n\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-top-container{\n	min-height: 170px;\n} */','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-27 03:45:49','2022-04-27 03:45:49','',32,'https://demoweblinks.in/ping/?p=525',0,'revision','',0),(526,1,'2022-04-27 03:49:53','2022-04-27 03:49:53','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n.network{\\n\\tbackground:#f5f5f5;\\n}\\n.team {\\n\\t box-shadow: 10px 15px #d1d1d157;\\n\\t    padding-top: 30px;\\n    padding-bottom: 30px;\\nbackground:#f8f8fa;\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n\\tborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n/* .service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n} */\\n.service-section{\\n\\tbackground:rgb(233 229 229);\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n.box-text.text-center .service1{\\n\\theight:250px;\\n}\\n.box-text.text-center .service2{\\n\\theight:180px;\\n}\\n.box-text.text-center .service3{\\n\\theight:140px;\\n}\\n.block{\\n\\tborder-radius:50px;\\n}\\n/* .aboutus{\\n\\tpadding-top: 80px!important;\\n  padding-bottom: 80px!important;\\n} */\\n.header-main .nav > li > a:hover{\\n\\tcolor:#446084;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\\n\\tfont-size:25px;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\\n\\tfont-size:20px;\\n}\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\n\\tborder-top-right-radius: 30px;\\n\\tborder-top-left-radius: 30px;\\n} */\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tborder-radius:30px;\\n/* \\tborder-bottom-right-radius: 30px;\\n\\tborder-bottom-left-radius: 30px; */\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\tmin-height:140px;\\n\\tbackground:transparent;\\n}\\n.counter{\\n\\tpadding-bottom:0px!important;\\n}\\n.ec-counter-items-wrap{\\n\\tpadding-top:80px!important;\\n\\tpadding-bottom:0px!important;\\n}\\n.social-icons{\\n\\tpadding-top:50px;\\n}\\n\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-top-container{\\n\\tmin-height: 170px;\\n} */\\n\\n.ec-template1 .ec-counter-item-1 .ec-count-subtitle{\\n\\tfont-weight:bold;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-27 03:49:53\"\n    }\n}','','','trash','closed','closed','','21f3836b-a06c-4c39-9fc4-1898b4267361','','','2022-04-27 03:49:53','2022-04-27 03:49:53','',0,'https://demoweblinks.in/ping/2022/04/27/21f3836b-a06c-4c39-9fc4-1898b4267361/',0,'customize_changeset','',0),(527,1,'2022-04-27 03:49:53','2022-04-27 03:49:53','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n.network{\n	background:#f5f5f5;\n}\n.team {\n	 box-shadow: 10px 15px #d1d1d157;\n	    padding-top: 30px;\n    padding-bottom: 30px;\nbackground:#f8f8fa;\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n	border-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n/* .service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n} */\n.service-section{\n	background:rgb(233 229 229);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.box-text.text-center .service1{\n	height:250px;\n}\n.box-text.text-center .service2{\n	height:180px;\n}\n.box-text.text-center .service3{\n	height:140px;\n}\n.block{\n	border-radius:50px;\n}\n/* .aboutus{\n	padding-top: 80px!important;\n  padding-bottom: 80px!important;\n} */\n.header-main .nav > li > a:hover{\n	color:#446084;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\n	font-size:25px;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\n	font-size:20px;\n}\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n\n	border-top-right-radius: 30px;\n	border-top-left-radius: 30px;\n} */\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	border-radius:30px;\n/* 	border-bottom-right-radius: 30px;\n	border-bottom-left-radius: 30px; */\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n	min-height:140px;\n	background:transparent;\n}\n.counter{\n	padding-bottom:0px!important;\n}\n.ec-counter-items-wrap{\n	padding-top:80px!important;\n	padding-bottom:0px!important;\n}\n.social-icons{\n	padding-top:50px;\n}\n\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-top-container{\n	min-height: 170px;\n} */\n\n.ec-template1 .ec-counter-item-1 .ec-count-subtitle{\n	font-weight:bold;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-27 03:49:53','2022-04-27 03:49:53','',32,'https://demoweblinks.in/ping/?p=527',0,'revision','',0),(528,1,'2022-04-27 03:50:35','2022-04-27 03:50:35','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n.network{\\n\\tbackground:#f5f5f5;\\n}\\n.team {\\n\\t box-shadow: 10px 15px #d1d1d157;\\n\\t    padding-top: 30px;\\n    padding-bottom: 30px;\\nbackground:#f8f8fa;\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n\\tborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n/* .service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n} */\\n.service-section{\\n\\tbackground:rgb(233 229 229);\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n.box-text.text-center .service1{\\n\\theight:250px;\\n}\\n.box-text.text-center .service2{\\n\\theight:180px;\\n}\\n.box-text.text-center .service3{\\n\\theight:140px;\\n}\\n.block{\\n\\tborder-radius:50px;\\n}\\n/* .aboutus{\\n\\tpadding-top: 80px!important;\\n  padding-bottom: 80px!important;\\n} */\\n.header-main .nav > li > a:hover{\\n\\tcolor:#446084;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\\n\\tfont-size:25px;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\\n\\tfont-size:20px;\\n}\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\n\\tborder-top-right-radius: 30px;\\n\\tborder-top-left-radius: 30px;\\n} */\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tborder-radius:30px;\\n/* \\tborder-bottom-right-radius: 30px;\\n\\tborder-bottom-left-radius: 30px; */\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\tmin-height:140px;\\n\\tbackground:transparent;\\n}\\n.counter{\\n\\tpadding-bottom:0px!important;\\n}\\n.ec-counter-items-wrap{\\n\\tpadding-top:80px!important;\\n\\tpadding-bottom:0px!important;\\n}\\n.social-icons{\\n\\tpadding-top:50px;\\n}\\n\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-top-container{\\n\\tmin-height: 170px;\\n} */\\n\\n.ec-template1 .ec-counter-item-1 .ec-count-subtitle,.ec-template1 .ec-counter-item-2 .ec-count-subtitle,.ec-template1 .ec-counter-item-3 .ec-count-subtitle{\\n\\tfont-weight:bold;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-27 03:50:35\"\n    }\n}','','','trash','closed','closed','','cb3f1148-1e48-4e20-821d-ea0c1957cd31','','','2022-04-27 03:50:35','2022-04-27 03:50:35','',0,'https://demoweblinks.in/ping/2022/04/27/cb3f1148-1e48-4e20-821d-ea0c1957cd31/',0,'customize_changeset','',0),(529,1,'2022-04-27 03:50:35','2022-04-27 03:50:35','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n.network{\n	background:#f5f5f5;\n}\n.team {\n	 box-shadow: 10px 15px #d1d1d157;\n	    padding-top: 30px;\n    padding-bottom: 30px;\nbackground:#f8f8fa;\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n	border-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n/* .service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n} */\n.service-section{\n	background:rgb(233 229 229);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.box-text.text-center .service1{\n	height:250px;\n}\n.box-text.text-center .service2{\n	height:180px;\n}\n.box-text.text-center .service3{\n	height:140px;\n}\n.block{\n	border-radius:50px;\n}\n/* .aboutus{\n	padding-top: 80px!important;\n  padding-bottom: 80px!important;\n} */\n.header-main .nav > li > a:hover{\n	color:#446084;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\n	font-size:25px;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\n	font-size:20px;\n}\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n\n	border-top-right-radius: 30px;\n	border-top-left-radius: 30px;\n} */\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	border-radius:30px;\n/* 	border-bottom-right-radius: 30px;\n	border-bottom-left-radius: 30px; */\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n	min-height:140px;\n	background:transparent;\n}\n.counter{\n	padding-bottom:0px!important;\n}\n.ec-counter-items-wrap{\n	padding-top:80px!important;\n	padding-bottom:0px!important;\n}\n.social-icons{\n	padding-top:50px;\n}\n\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-top-container{\n	min-height: 170px;\n} */\n\n.ec-template1 .ec-counter-item-1 .ec-count-subtitle,.ec-template1 .ec-counter-item-2 .ec-count-subtitle,.ec-template1 .ec-counter-item-3 .ec-count-subtitle{\n	font-weight:bold;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-27 03:50:35','2022-04-27 03:50:35','',32,'https://demoweblinks.in/ping/?p=529',0,'revision','',0),(530,1,'2022-04-27 03:51:59','2022-04-27 03:51:59','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n.network{\\n\\tbackground:#f5f5f5;\\n}\\n.team {\\n\\t box-shadow: 10px 15px #d1d1d157;\\n\\t    padding-top: 30px;\\n    padding-bottom: 30px;\\nbackground:#f8f8fa;\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n\\tborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n/* .service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n} */\\n.service-section{\\n\\tbackground:rgb(233 229 229);\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n.box-text.text-center .service1{\\n\\theight:250px;\\n}\\n.box-text.text-center .service2{\\n\\theight:180px;\\n}\\n.box-text.text-center .service3{\\n\\theight:140px;\\n}\\n.block{\\n\\tborder-radius:50px;\\n}\\n/* .aboutus{\\n\\tpadding-top: 80px!important;\\n  padding-bottom: 80px!important;\\n} */\\n.header-main .nav > li > a:hover{\\n\\tcolor:#446084;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\\n\\tfont-size:25px;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\\n\\tfont-size:20px;\\n}\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\n\\tborder-top-right-radius: 30px;\\n\\tborder-top-left-radius: 30px;\\n} */\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tborder-radius:30px;\\n/* \\tborder-bottom-right-radius: 30px;\\n\\tborder-bottom-left-radius: 30px; */\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\tmin-height:140px;\\n\\tbackground:transparent;\\n}\\n.counter{\\n\\tpadding-bottom:0px!important;\\n}\\n.ec-counter-items-wrap{\\n\\tpadding-top:80px!important;\\n\\tpadding-bottom:0px!important;\\n}\\n.social-icons{\\n\\tpadding-top:50px;\\n}\\n\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-top-container{\\n\\tmin-height: 170px;\\n} */\\n\\n.ec-template1 .ec-counter-item-1 .ec-count-subtitle,.ec-template1 .ec-counter-item-2 .ec-count-subtitle,.ec-template1 .ec-counter-item-3 .ec-count-subtitle{\\n\\tfont-weight:bold;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\ttop:18px;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-27 03:51:59\"\n    }\n}','','','trash','closed','closed','','ace91725-3731-4fe2-b167-040fa9a13597','','','2022-04-27 03:51:59','2022-04-27 03:51:59','',0,'https://demoweblinks.in/ping/2022/04/27/ace91725-3731-4fe2-b167-040fa9a13597/',0,'customize_changeset','',0),(531,1,'2022-04-27 03:51:59','2022-04-27 03:51:59','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n.network{\n	background:#f5f5f5;\n}\n.team {\n	 box-shadow: 10px 15px #d1d1d157;\n	    padding-top: 30px;\n    padding-bottom: 30px;\nbackground:#f8f8fa;\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n	border-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n/* .service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n} */\n.service-section{\n	background:rgb(233 229 229);\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.box-text.text-center .service1{\n	height:250px;\n}\n.box-text.text-center .service2{\n	height:180px;\n}\n.box-text.text-center .service3{\n	height:140px;\n}\n.block{\n	border-radius:50px;\n}\n/* .aboutus{\n	padding-top: 80px!important;\n  padding-bottom: 80px!important;\n} */\n.header-main .nav > li > a:hover{\n	color:#446084;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\n	font-size:25px;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\n	font-size:20px;\n}\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n\n	border-top-right-radius: 30px;\n	border-top-left-radius: 30px;\n} */\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	border-radius:30px;\n/* 	border-bottom-right-radius: 30px;\n	border-bottom-left-radius: 30px; */\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n	min-height:140px;\n	background:transparent;\n}\n.counter{\n	padding-bottom:0px!important;\n}\n.ec-counter-items-wrap{\n	padding-top:80px!important;\n	padding-bottom:0px!important;\n}\n.social-icons{\n	padding-top:50px;\n}\n\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-top-container{\n	min-height: 170px;\n} */\n\n.ec-template1 .ec-counter-item-1 .ec-count-subtitle,.ec-template1 .ec-counter-item-2 .ec-count-subtitle,.ec-template1 .ec-counter-item-3 .ec-count-subtitle{\n	font-weight:bold;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	top:18px;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-27 03:51:59','2022-04-27 03:51:59','',32,'https://demoweblinks.in/ping/?p=531',0,'revision','',0),(532,1,'2022-04-27 03:57:29','2022-04-27 03:57:29','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n.network{\\n\\tbackground:#f5f5f5;\\n}\\n.team {\\n\\t box-shadow: 10px 15px #d1d1d157;\\n\\t    padding-top: 30px;\\n    padding-bottom: 30px;\\nbackground:#f8f8fa;\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n\\tborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n/* .service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n} */\\n.service-section{\\n\\tbackground:rgb(233 229 229);\\n\\tpadding-top: 50px;\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n.box-text.text-center .service1{\\n\\theight:250px;\\n}\\n.box-text.text-center .service2{\\n\\theight:180px;\\n}\\n.box-text.text-center .service3{\\n\\theight:140px;\\n}\\n.block{\\n\\tborder-radius:50px;\\n}\\n/* .aboutus{\\n\\tpadding-top: 80px!important;\\n  padding-bottom: 80px!important;\\n} */\\n.header-main .nav > li > a:hover{\\n\\tcolor:#446084;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\\n\\tfont-size:25px;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\\n\\tfont-size:20px;\\n}\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\n\\tborder-top-right-radius: 30px;\\n\\tborder-top-left-radius: 30px;\\n} */\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tborder-radius:30px;\\n/* \\tborder-bottom-right-radius: 30px;\\n\\tborder-bottom-left-radius: 30px; */\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\tmin-height:140px;\\n\\tbackground:transparent;\\n}\\n.counter{\\n\\tpadding-bottom:0px!important;\\n}\\n.ec-counter-items-wrap{\\n\\tpadding-top:80px!important;\\n\\tpadding-bottom:0px!important;\\n}\\n.social-icons{\\n\\tpadding-top:50px;\\n}\\n\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-top-container{\\n\\tmin-height: 170px;\\n} */\\n\\n.ec-template1 .ec-counter-item-1 .ec-count-subtitle,.ec-template1 .ec-counter-item-2 .ec-count-subtitle,.ec-template1 .ec-counter-item-3 .ec-count-subtitle{\\n\\tfont-weight:bold;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\ttop:18px;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-27 03:57:29\"\n    }\n}','','','trash','closed','closed','','207b81f0-908e-481d-83b5-5f6a667fa69d','','','2022-04-27 03:57:29','2022-04-27 03:57:29','',0,'https://demoweblinks.in/ping/2022/04/27/207b81f0-908e-481d-83b5-5f6a667fa69d/',0,'customize_changeset','',0),(533,1,'2022-04-27 03:57:29','2022-04-27 03:57:29','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n.network{\n	background:#f5f5f5;\n}\n.team {\n	 box-shadow: 10px 15px #d1d1d157;\n	    padding-top: 30px;\n    padding-bottom: 30px;\nbackground:#f8f8fa;\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n	border-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n/* .service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n} */\n.service-section{\n	background:rgb(233 229 229);\n	padding-top: 50px;\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.box-text.text-center .service1{\n	height:250px;\n}\n.box-text.text-center .service2{\n	height:180px;\n}\n.box-text.text-center .service3{\n	height:140px;\n}\n.block{\n	border-radius:50px;\n}\n/* .aboutus{\n	padding-top: 80px!important;\n  padding-bottom: 80px!important;\n} */\n.header-main .nav > li > a:hover{\n	color:#446084;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\n	font-size:25px;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\n	font-size:20px;\n}\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n\n	border-top-right-radius: 30px;\n	border-top-left-radius: 30px;\n} */\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	border-radius:30px;\n/* 	border-bottom-right-radius: 30px;\n	border-bottom-left-radius: 30px; */\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n	min-height:140px;\n	background:transparent;\n}\n.counter{\n	padding-bottom:0px!important;\n}\n.ec-counter-items-wrap{\n	padding-top:80px!important;\n	padding-bottom:0px!important;\n}\n.social-icons{\n	padding-top:50px;\n}\n\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-top-container{\n	min-height: 170px;\n} */\n\n.ec-template1 .ec-counter-item-1 .ec-count-subtitle,.ec-template1 .ec-counter-item-2 .ec-count-subtitle,.ec-template1 .ec-counter-item-3 .ec-count-subtitle{\n	font-weight:bold;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	top:18px;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-27 03:57:29','2022-04-27 03:57:29','',32,'https://demoweblinks.in/ping/?p=533',0,'revision','',0),(534,1,'2022-04-27 03:58:02','2022-04-27 03:58:02','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n.network{\\n\\tbackground:#f5f5f5;\\n}\\n.team {\\n\\t box-shadow: 10px 15px #d1d1d157;\\n\\t    padding-top: 30px;\\n    padding-bottom: 30px;\\nbackground:#f8f8fa;\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n\\tborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n/* .service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n} */\\n.service-section{\\n\\tbackground:rgb(233 229 229);\\n\\tpadding-top: 60px!important;\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n.box-text.text-center .service1{\\n\\theight:250px;\\n}\\n.box-text.text-center .service2{\\n\\theight:180px;\\n}\\n.box-text.text-center .service3{\\n\\theight:140px;\\n}\\n.block{\\n\\tborder-radius:50px;\\n}\\n/* .aboutus{\\n\\tpadding-top: 80px!important;\\n  padding-bottom: 80px!important;\\n} */\\n.header-main .nav > li > a:hover{\\n\\tcolor:#446084;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\\n\\tfont-size:25px;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\\n\\tfont-size:20px;\\n}\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\n\\tborder-top-right-radius: 30px;\\n\\tborder-top-left-radius: 30px;\\n} */\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tborder-radius:30px;\\n/* \\tborder-bottom-right-radius: 30px;\\n\\tborder-bottom-left-radius: 30px; */\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\tmin-height:140px;\\n\\tbackground:transparent;\\n}\\n.counter{\\n\\tpadding-bottom:0px!important;\\n}\\n.ec-counter-items-wrap{\\n\\tpadding-top:80px!important;\\n\\tpadding-bottom:0px!important;\\n}\\n.social-icons{\\n\\tpadding-top:50px;\\n}\\n\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-top-container{\\n\\tmin-height: 170px;\\n} */\\n\\n.ec-template1 .ec-counter-item-1 .ec-count-subtitle,.ec-template1 .ec-counter-item-2 .ec-count-subtitle,.ec-template1 .ec-counter-item-3 .ec-count-subtitle{\\n\\tfont-weight:bold;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\ttop:18px;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-27 03:58:02\"\n    }\n}','','','trash','closed','closed','','03ce5853-99e1-4980-be2e-d57a7ec0f33f','','','2022-04-27 03:58:02','2022-04-27 03:58:02','',0,'https://demoweblinks.in/ping/2022/04/27/03ce5853-99e1-4980-be2e-d57a7ec0f33f/',0,'customize_changeset','',0),(535,1,'2022-04-27 03:58:02','2022-04-27 03:58:02','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n.network{\n	background:#f5f5f5;\n}\n.team {\n	 box-shadow: 10px 15px #d1d1d157;\n	    padding-top: 30px;\n    padding-bottom: 30px;\nbackground:#f8f8fa;\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n	border-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n/* .service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n} */\n.service-section{\n	background:rgb(233 229 229);\n	padding-top: 60px!important;\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.box-text.text-center .service1{\n	height:250px;\n}\n.box-text.text-center .service2{\n	height:180px;\n}\n.box-text.text-center .service3{\n	height:140px;\n}\n.block{\n	border-radius:50px;\n}\n/* .aboutus{\n	padding-top: 80px!important;\n  padding-bottom: 80px!important;\n} */\n.header-main .nav > li > a:hover{\n	color:#446084;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\n	font-size:25px;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\n	font-size:20px;\n}\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n\n	border-top-right-radius: 30px;\n	border-top-left-radius: 30px;\n} */\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	border-radius:30px;\n/* 	border-bottom-right-radius: 30px;\n	border-bottom-left-radius: 30px; */\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n	min-height:140px;\n	background:transparent;\n}\n.counter{\n	padding-bottom:0px!important;\n}\n.ec-counter-items-wrap{\n	padding-top:80px!important;\n	padding-bottom:0px!important;\n}\n.social-icons{\n	padding-top:50px;\n}\n\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-top-container{\n	min-height: 170px;\n} */\n\n.ec-template1 .ec-counter-item-1 .ec-count-subtitle,.ec-template1 .ec-counter-item-2 .ec-count-subtitle,.ec-template1 .ec-counter-item-3 .ec-count-subtitle{\n	font-weight:bold;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	top:18px;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-27 03:58:02','2022-04-27 03:58:02','',32,'https://demoweblinks.in/ping/?p=535',0,'revision','',0),(536,1,'2022-04-27 03:58:46','2022-04-27 03:58:46','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n.network{\\n\\tbackground:#f5f5f5;\\n}\\n.team {\\n\\t box-shadow: 10px 15px #d1d1d157;\\n\\t    padding-top: 60px;\\n    padding-bottom: 30px;\\nbackground:#f8f8fa;\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n\\tborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n/* .service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n} */\\n.service-section{\\n\\tbackground:rgb(233 229 229);\\n\\tpadding-top: 60px!important;\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n.box-text.text-center .service1{\\n\\theight:250px;\\n}\\n.box-text.text-center .service2{\\n\\theight:180px;\\n}\\n.box-text.text-center .service3{\\n\\theight:140px;\\n}\\n.block{\\n\\tborder-radius:50px;\\n}\\n/* .aboutus{\\n\\tpadding-top: 80px!important;\\n  padding-bottom: 80px!important;\\n} */\\n.header-main .nav > li > a:hover{\\n\\tcolor:#446084;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\\n\\tfont-size:25px;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\\n\\tfont-size:20px;\\n}\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\n\\tborder-top-right-radius: 30px;\\n\\tborder-top-left-radius: 30px;\\n} */\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tborder-radius:30px;\\n/* \\tborder-bottom-right-radius: 30px;\\n\\tborder-bottom-left-radius: 30px; */\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\tmin-height:140px;\\n\\tbackground:transparent;\\n}\\n.counter{\\n\\tpadding-bottom:0px!important;\\n}\\n.ec-counter-items-wrap{\\n\\tpadding-top:80px!important;\\n\\tpadding-bottom:0px!important;\\n}\\n.social-icons{\\n\\tpadding-top:50px;\\n}\\n\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-top-container{\\n\\tmin-height: 170px;\\n} */\\n\\n.ec-template1 .ec-counter-item-1 .ec-count-subtitle,.ec-template1 .ec-counter-item-2 .ec-count-subtitle,.ec-template1 .ec-counter-item-3 .ec-count-subtitle{\\n\\tfont-weight:bold;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\ttop:18px;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-27 03:58:46\"\n    }\n}','','','trash','closed','closed','','2295258c-f921-41cd-b83a-dcbf9dc1cfd7','','','2022-04-27 03:58:46','2022-04-27 03:58:46','',0,'https://demoweblinks.in/ping/2022/04/27/2295258c-f921-41cd-b83a-dcbf9dc1cfd7/',0,'customize_changeset','',0),(537,1,'2022-04-27 03:58:46','2022-04-27 03:58:46','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n.network{\n	background:#f5f5f5;\n}\n.team {\n	 box-shadow: 10px 15px #d1d1d157;\n	    padding-top: 60px;\n    padding-bottom: 30px;\nbackground:#f8f8fa;\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n	border-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n/* .service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n} */\n.service-section{\n	background:rgb(233 229 229);\n	padding-top: 60px!important;\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.box-text.text-center .service1{\n	height:250px;\n}\n.box-text.text-center .service2{\n	height:180px;\n}\n.box-text.text-center .service3{\n	height:140px;\n}\n.block{\n	border-radius:50px;\n}\n/* .aboutus{\n	padding-top: 80px!important;\n  padding-bottom: 80px!important;\n} */\n.header-main .nav > li > a:hover{\n	color:#446084;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\n	font-size:25px;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\n	font-size:20px;\n}\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n\n	border-top-right-radius: 30px;\n	border-top-left-radius: 30px;\n} */\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	border-radius:30px;\n/* 	border-bottom-right-radius: 30px;\n	border-bottom-left-radius: 30px; */\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n	min-height:140px;\n	background:transparent;\n}\n.counter{\n	padding-bottom:0px!important;\n}\n.ec-counter-items-wrap{\n	padding-top:80px!important;\n	padding-bottom:0px!important;\n}\n.social-icons{\n	padding-top:50px;\n}\n\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-top-container{\n	min-height: 170px;\n} */\n\n.ec-template1 .ec-counter-item-1 .ec-count-subtitle,.ec-template1 .ec-counter-item-2 .ec-count-subtitle,.ec-template1 .ec-counter-item-3 .ec-count-subtitle{\n	font-weight:bold;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	top:18px;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-27 03:58:46','2022-04-27 03:58:46','',32,'https://demoweblinks.in/ping/?p=537',0,'revision','',0),(538,1,'2022-04-27 03:59:06','2022-04-27 03:59:06','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n.network{\\n\\tbackground:#f5f5f5;\\n}\\n.team {\\n\\t box-shadow: 10px 15px #d1d1d157;\\n\\t    padding-top: 60px!important;\\n    padding-bottom: 30px;\\nbackground:#f8f8fa;\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n\\tborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n/* .service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n} */\\n.service-section{\\n\\tbackground:rgb(233 229 229);\\n\\tpadding-top: 60px!important;\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n.box-text.text-center .service1{\\n\\theight:250px;\\n}\\n.box-text.text-center .service2{\\n\\theight:180px;\\n}\\n.box-text.text-center .service3{\\n\\theight:140px;\\n}\\n.block{\\n\\tborder-radius:50px;\\n}\\n/* .aboutus{\\n\\tpadding-top: 80px!important;\\n  padding-bottom: 80px!important;\\n} */\\n.header-main .nav > li > a:hover{\\n\\tcolor:#446084;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\\n\\tfont-size:25px;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\\n\\tfont-size:20px;\\n}\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\n\\tborder-top-right-radius: 30px;\\n\\tborder-top-left-radius: 30px;\\n} */\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tborder-radius:30px;\\n/* \\tborder-bottom-right-radius: 30px;\\n\\tborder-bottom-left-radius: 30px; */\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\tmin-height:140px;\\n\\tbackground:transparent;\\n}\\n.counter{\\n\\tpadding-bottom:0px!important;\\n}\\n.ec-counter-items-wrap{\\n\\tpadding-top:80px!important;\\n\\tpadding-bottom:0px!important;\\n}\\n.social-icons{\\n\\tpadding-top:50px;\\n}\\n\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-top-container{\\n\\tmin-height: 170px;\\n} */\\n\\n.ec-template1 .ec-counter-item-1 .ec-count-subtitle,.ec-template1 .ec-counter-item-2 .ec-count-subtitle,.ec-template1 .ec-counter-item-3 .ec-count-subtitle{\\n\\tfont-weight:bold;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\ttop:18px;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-27 03:59:06\"\n    }\n}','','','trash','closed','closed','','11ac1e50-6ef7-4c86-b013-867068858b13','','','2022-04-27 03:59:06','2022-04-27 03:59:06','',0,'https://demoweblinks.in/ping/2022/04/27/11ac1e50-6ef7-4c86-b013-867068858b13/',0,'customize_changeset','',0),(539,1,'2022-04-27 03:59:06','2022-04-27 03:59:06','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n.network{\n	background:#f5f5f5;\n}\n.team {\n	 box-shadow: 10px 15px #d1d1d157;\n	    padding-top: 60px!important;\n    padding-bottom: 30px;\nbackground:#f8f8fa;\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n	border-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n/* .service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n} */\n.service-section{\n	background:rgb(233 229 229);\n	padding-top: 60px!important;\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.box-text.text-center .service1{\n	height:250px;\n}\n.box-text.text-center .service2{\n	height:180px;\n}\n.box-text.text-center .service3{\n	height:140px;\n}\n.block{\n	border-radius:50px;\n}\n/* .aboutus{\n	padding-top: 80px!important;\n  padding-bottom: 80px!important;\n} */\n.header-main .nav > li > a:hover{\n	color:#446084;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\n	font-size:25px;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\n	font-size:20px;\n}\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n\n	border-top-right-radius: 30px;\n	border-top-left-radius: 30px;\n} */\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	border-radius:30px;\n/* 	border-bottom-right-radius: 30px;\n	border-bottom-left-radius: 30px; */\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n	min-height:140px;\n	background:transparent;\n}\n.counter{\n	padding-bottom:0px!important;\n}\n.ec-counter-items-wrap{\n	padding-top:80px!important;\n	padding-bottom:0px!important;\n}\n.social-icons{\n	padding-top:50px;\n}\n\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-top-container{\n	min-height: 170px;\n} */\n\n.ec-template1 .ec-counter-item-1 .ec-count-subtitle,.ec-template1 .ec-counter-item-2 .ec-count-subtitle,.ec-template1 .ec-counter-item-3 .ec-count-subtitle{\n	font-weight:bold;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	top:18px;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-27 03:59:06','2022-04-27 03:59:06','',32,'https://demoweblinks.in/ping/?p=539',0,'revision','',0),(540,1,'2022-04-27 04:00:02','2022-04-27 04:00:02','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n.network{\\n\\tbackground:#f5f5f5;\\n\\tpadding-top: 60px!important;\\n}\\n.team {\\n\\t box-shadow: 10px 15px #d1d1d157;\\n\\t    padding-top: 30px;\\n    padding-bottom: 30px;\\nbackground:#f8f8fa;\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n\\tborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n/* .service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n} */\\n.service-section{\\n\\tbackground:rgb(233 229 229);\\n\\tpadding-top: 60px!important;\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n.box-text.text-center .service1{\\n\\theight:250px;\\n}\\n.box-text.text-center .service2{\\n\\theight:180px;\\n}\\n.box-text.text-center .service3{\\n\\theight:140px;\\n}\\n.block{\\n\\tborder-radius:50px;\\n}\\n/* .aboutus{\\n\\tpadding-top: 80px!important;\\n  padding-bottom: 80px!important;\\n} */\\n.header-main .nav > li > a:hover{\\n\\tcolor:#446084;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\\n\\tfont-size:25px;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\\n\\tfont-size:20px;\\n}\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\n\\tborder-top-right-radius: 30px;\\n\\tborder-top-left-radius: 30px;\\n} */\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tborder-radius:30px;\\n/* \\tborder-bottom-right-radius: 30px;\\n\\tborder-bottom-left-radius: 30px; */\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\tmin-height:140px;\\n\\tbackground:transparent;\\n}\\n.counter{\\n\\tpadding-bottom:0px!important;\\n}\\n.ec-counter-items-wrap{\\n\\tpadding-top:80px!important;\\n\\tpadding-bottom:0px!important;\\n}\\n.social-icons{\\n\\tpadding-top:50px;\\n}\\n\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-top-container{\\n\\tmin-height: 170px;\\n} */\\n\\n.ec-template1 .ec-counter-item-1 .ec-count-subtitle,.ec-template1 .ec-counter-item-2 .ec-count-subtitle,.ec-template1 .ec-counter-item-3 .ec-count-subtitle{\\n\\tfont-weight:bold;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\ttop:18px;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-27 04:00:02\"\n    }\n}','','','trash','closed','closed','','f05ac471-8dc5-4e3c-8fa7-f84ceb840bd9','','','2022-04-27 04:00:02','2022-04-27 04:00:02','',0,'https://demoweblinks.in/ping/2022/04/27/f05ac471-8dc5-4e3c-8fa7-f84ceb840bd9/',0,'customize_changeset','',0),(541,1,'2022-04-27 04:00:02','2022-04-27 04:00:02','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n.network{\n	background:#f5f5f5;\n	padding-top: 60px!important;\n}\n.team {\n	 box-shadow: 10px 15px #d1d1d157;\n	    padding-top: 30px;\n    padding-bottom: 30px;\nbackground:#f8f8fa;\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n	border-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n/* .service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n} */\n.service-section{\n	background:rgb(233 229 229);\n	padding-top: 60px!important;\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.box-text.text-center .service1{\n	height:250px;\n}\n.box-text.text-center .service2{\n	height:180px;\n}\n.box-text.text-center .service3{\n	height:140px;\n}\n.block{\n	border-radius:50px;\n}\n/* .aboutus{\n	padding-top: 80px!important;\n  padding-bottom: 80px!important;\n} */\n.header-main .nav > li > a:hover{\n	color:#446084;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\n	font-size:25px;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\n	font-size:20px;\n}\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n\n	border-top-right-radius: 30px;\n	border-top-left-radius: 30px;\n} */\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	border-radius:30px;\n/* 	border-bottom-right-radius: 30px;\n	border-bottom-left-radius: 30px; */\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n	min-height:140px;\n	background:transparent;\n}\n.counter{\n	padding-bottom:0px!important;\n}\n.ec-counter-items-wrap{\n	padding-top:80px!important;\n	padding-bottom:0px!important;\n}\n.social-icons{\n	padding-top:50px;\n}\n\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-top-container{\n	min-height: 170px;\n} */\n\n.ec-template1 .ec-counter-item-1 .ec-count-subtitle,.ec-template1 .ec-counter-item-2 .ec-count-subtitle,.ec-template1 .ec-counter-item-3 .ec-count-subtitle{\n	font-weight:bold;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	top:18px;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-27 04:00:02','2022-04-27 04:00:02','',32,'https://demoweblinks.in/ping/?p=541',0,'revision','',0),(542,1,'2022-04-27 04:01:34','2022-04-27 04:01:34','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n.network{\\n\\tbackground:#f5f5f5;\\n\\tpadding-top: 60px!important;\\n}\\n.team {\\n\\t box-shadow: 10px 15px #d1d1d157;\\n\\t    padding-top: 30px;\\n    padding-bottom: 30px;\\nbackground:#f8f8fa;\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n\\tborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n/* .service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n} */\\n.service-section{\\n\\tbackground:rgb(233 229 229);\\n\\tpadding-top: 60px!important;\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n.box-text.text-center .service1{\\n\\theight:250px;\\n}\\n.box-text.text-center .service2{\\n\\theight:180px;\\n}\\n.box-text.text-center .service3{\\n\\theight:140px;\\n}\\n.block{\\n\\tborder-radius:50px;\\n}\\n/* .aboutus{\\n\\tpadding-top: 80px!important;\\n  padding-bottom: 80px!important;\\n} */\\n.header-main .nav > li > a:hover{\\n\\tcolor:#446084;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\\n\\tfont-size:25px;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\\n\\tfont-size:20px;\\n}\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\n\\tborder-top-right-radius: 30px;\\n\\tborder-top-left-radius: 30px;\\n} */\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tborder-radius:30px;\\n/* \\tborder-bottom-right-radius: 30px;\\n\\tborder-bottom-left-radius: 30px; */\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\tmin-height:140px;\\n\\tbackground:transparent;\\n}\\n.counter{\\n\\tpadding-bottom:0px!important;\\n}\\n.ec-counter-items-wrap{\\n\\tpadding-top:80px!important;\\n\\tpadding-bottom:0px!important;\\n}\\n.social-icons{\\n\\tpadding-top:50px;\\n}\\n\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-top-container{\\n\\tmin-height: 170px;\\n} */\\n\\n.ec-template1 .ec-counter-item-1 .ec-count-subtitle,.ec-template1 .ec-counter-item-2 .ec-count-subtitle,.ec-template1 .ec-counter-item-3 .ec-count-subtitle{\\n\\tfont-weight:bold;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\ttop:18px;\\n}\\n\\n.contactus{\\n\\tpadding-top:60px!important;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-27 04:01:34\"\n    }\n}','','','trash','closed','closed','','242c912d-a604-46ae-996f-01f67c227f1c','','','2022-04-27 04:01:34','2022-04-27 04:01:34','',0,'https://demoweblinks.in/ping/?p=542',0,'customize_changeset','',0),(543,1,'2022-04-27 04:01:34','2022-04-27 04:01:34','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n.network{\n	background:#f5f5f5;\n	padding-top: 60px!important;\n}\n.team {\n	 box-shadow: 10px 15px #d1d1d157;\n	    padding-top: 30px;\n    padding-bottom: 30px;\nbackground:#f8f8fa;\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n	border-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n/* .service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n} */\n.service-section{\n	background:rgb(233 229 229);\n	padding-top: 60px!important;\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.box-text.text-center .service1{\n	height:250px;\n}\n.box-text.text-center .service2{\n	height:180px;\n}\n.box-text.text-center .service3{\n	height:140px;\n}\n.block{\n	border-radius:50px;\n}\n/* .aboutus{\n	padding-top: 80px!important;\n  padding-bottom: 80px!important;\n} */\n.header-main .nav > li > a:hover{\n	color:#446084;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\n	font-size:25px;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\n	font-size:20px;\n}\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n\n	border-top-right-radius: 30px;\n	border-top-left-radius: 30px;\n} */\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	border-radius:30px;\n/* 	border-bottom-right-radius: 30px;\n	border-bottom-left-radius: 30px; */\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n	min-height:140px;\n	background:transparent;\n}\n.counter{\n	padding-bottom:0px!important;\n}\n.ec-counter-items-wrap{\n	padding-top:80px!important;\n	padding-bottom:0px!important;\n}\n.social-icons{\n	padding-top:50px;\n}\n\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-top-container{\n	min-height: 170px;\n} */\n\n.ec-template1 .ec-counter-item-1 .ec-count-subtitle,.ec-template1 .ec-counter-item-2 .ec-count-subtitle,.ec-template1 .ec-counter-item-3 .ec-count-subtitle{\n	font-weight:bold;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	top:18px;\n}\n\n.contactus{\n	padding-top:60px!important;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-27 04:01:34','2022-04-27 04:01:34','',32,'https://demoweblinks.in/ping/?p=543',0,'revision','',0),(544,1,'2022-04-27 04:07:34','2022-04-27 04:07:34','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n.network{\\n\\tbackground:#f5f5f5;\\n\\tpadding-top: 60px!important;\\n}\\n.team {\\n\\t box-shadow: 10px 15px #d1d1d157;\\n\\t    padding-top: 30px;\\n    padding-bottom: 30px;\\nbackground:#f8f8fa;\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n\\tborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n/* .service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n} */\\n.service-section{\\n\\tbackground:rgb(233 229 229);\\n\\tpadding-top: 60px!important;\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n.service1 h4{\\n\\tcolor:#fb0201\\n}\\n.box-text.text-center .service1{\\n\\theight:250px;\\n}\\n.box-text.text-center .service2{\\n\\theight:180px;\\n}\\n.box-text.text-center .service3{\\n\\theight:140px;\\n}\\n.block{\\n\\tborder-radius:50px;\\n}\\n/* .aboutus{\\n\\tpadding-top: 80px!important;\\n  padding-bottom: 80px!important;\\n} */\\n.header-main .nav > li > a:hover{\\n\\tcolor:#446084;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\\n\\tfont-size:25px;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\\n\\tfont-size:20px;\\n}\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\n\\tborder-top-right-radius: 30px;\\n\\tborder-top-left-radius: 30px;\\n} */\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tborder-radius:30px;\\n/* \\tborder-bottom-right-radius: 30px;\\n\\tborder-bottom-left-radius: 30px; */\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\tmin-height:140px;\\n\\tbackground:transparent;\\n}\\n.counter{\\n\\tpadding-bottom:0px!important;\\n}\\n.ec-counter-items-wrap{\\n\\tpadding-top:80px!important;\\n\\tpadding-bottom:0px!important;\\n}\\n.social-icons{\\n\\tpadding-top:50px;\\n}\\n\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-top-container{\\n\\tmin-height: 170px;\\n} */\\n\\n.ec-template1 .ec-counter-item-1 .ec-count-subtitle,.ec-template1 .ec-counter-item-2 .ec-count-subtitle,.ec-template1 .ec-counter-item-3 .ec-count-subtitle{\\n\\tfont-weight:bold;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\ttop:18px;\\n}\\n\\n.contactus{\\n\\tpadding-top:60px!important;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-27 04:07:34\"\n    }\n}','','','trash','closed','closed','','c06bcf3f-07ce-4a28-a044-c3a74cc2f9b1','','','2022-04-27 04:07:34','2022-04-27 04:07:34','',0,'https://demoweblinks.in/ping/?p=544',0,'customize_changeset','',0),(545,1,'2022-04-27 04:07:34','2022-04-27 04:07:34','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n.network{\n	background:#f5f5f5;\n	padding-top: 60px!important;\n}\n.team {\n	 box-shadow: 10px 15px #d1d1d157;\n	    padding-top: 30px;\n    padding-bottom: 30px;\nbackground:#f8f8fa;\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n	border-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n/* .service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n} */\n.service-section{\n	background:rgb(233 229 229);\n	padding-top: 60px!important;\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.service1 h4{\n	color:#fb0201\n}\n.box-text.text-center .service1{\n	height:250px;\n}\n.box-text.text-center .service2{\n	height:180px;\n}\n.box-text.text-center .service3{\n	height:140px;\n}\n.block{\n	border-radius:50px;\n}\n/* .aboutus{\n	padding-top: 80px!important;\n  padding-bottom: 80px!important;\n} */\n.header-main .nav > li > a:hover{\n	color:#446084;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\n	font-size:25px;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\n	font-size:20px;\n}\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n\n	border-top-right-radius: 30px;\n	border-top-left-radius: 30px;\n} */\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	border-radius:30px;\n/* 	border-bottom-right-radius: 30px;\n	border-bottom-left-radius: 30px; */\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n	min-height:140px;\n	background:transparent;\n}\n.counter{\n	padding-bottom:0px!important;\n}\n.ec-counter-items-wrap{\n	padding-top:80px!important;\n	padding-bottom:0px!important;\n}\n.social-icons{\n	padding-top:50px;\n}\n\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-top-container{\n	min-height: 170px;\n} */\n\n.ec-template1 .ec-counter-item-1 .ec-count-subtitle,.ec-template1 .ec-counter-item-2 .ec-count-subtitle,.ec-template1 .ec-counter-item-3 .ec-count-subtitle{\n	font-weight:bold;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	top:18px;\n}\n\n.contactus{\n	padding-top:60px!important;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-27 04:07:34','2022-04-27 04:07:34','',32,'https://demoweblinks.in/ping/?p=545',0,'revision','',0),(546,1,'2022-04-27 04:08:14','2022-04-27 04:08:14','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n.network{\\n\\tbackground:#f5f5f5;\\n\\tpadding-top: 60px!important;\\n}\\n.team {\\n\\t box-shadow: 10px 15px #d1d1d157;\\n\\t    padding-top: 30px;\\n    padding-bottom: 30px;\\nbackground:#f8f8fa;\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n\\tborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n/* .service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n} */\\n.service-section{\\n\\tbackground:rgb(233 229 229);\\n\\tpadding-top: 60px!important;\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n.service1 h4{\\n\\tcolor:#fb0201;\\n}\\n.box-text.text-center .service1{\\n\\theight:250px;\\n}\\n.box-text.text-center .service2{\\n\\theight:180px;\\n}\\n.box-text.text-center .service3{\\n\\theight:140px;\\n}\\n.block{\\n\\tborder-radius:50px;\\n}\\n/* .aboutus{\\n\\tpadding-top: 80px!important;\\n  padding-bottom: 80px!important;\\n} */\\n.header-main .nav > li > a:hover{\\n\\tcolor:#446084;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\\n\\tfont-size:25px;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\\n\\tfont-size:20px;\\n}\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\n\\tborder-top-right-radius: 30px;\\n\\tborder-top-left-radius: 30px;\\n} */\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tborder-radius:30px;\\n/* \\tborder-bottom-right-radius: 30px;\\n\\tborder-bottom-left-radius: 30px; */\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\tmin-height:140px;\\n\\tbackground:transparent;\\n}\\n.counter{\\n\\tpadding-bottom:0px!important;\\n}\\n.ec-counter-items-wrap{\\n\\tpadding-top:80px!important;\\n\\tpadding-bottom:0px!important;\\n}\\n.social-icons{\\n\\tpadding-top:50px;\\n}\\n\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-top-container{\\n\\tmin-height: 170px;\\n} */\\n\\n.ec-template1 .ec-counter-item-1 .ec-count-subtitle,.ec-template1 .ec-counter-item-2 .ec-count-subtitle,.ec-template1 .ec-counter-item-3 .ec-count-subtitle{\\n\\tfont-weight:bold;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\ttop:18px;\\n}\\n\\n.contactus{\\n\\tpadding-top:60px!important;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-27 04:08:14\"\n    }\n}','','','trash','closed','closed','','e316e45c-61a7-43e6-b0bb-400843f92fbd','','','2022-04-27 04:08:14','2022-04-27 04:08:14','',0,'https://demoweblinks.in/ping/2022/04/27/e316e45c-61a7-43e6-b0bb-400843f92fbd/',0,'customize_changeset','',0),(547,1,'2022-04-27 04:08:14','2022-04-27 04:08:14','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n.network{\n	background:#f5f5f5;\n	padding-top: 60px!important;\n}\n.team {\n	 box-shadow: 10px 15px #d1d1d157;\n	    padding-top: 30px;\n    padding-bottom: 30px;\nbackground:#f8f8fa;\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n	border-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n/* .service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n} */\n.service-section{\n	background:rgb(233 229 229);\n	padding-top: 60px!important;\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.service1 h4{\n	color:#fb0201;\n}\n.box-text.text-center .service1{\n	height:250px;\n}\n.box-text.text-center .service2{\n	height:180px;\n}\n.box-text.text-center .service3{\n	height:140px;\n}\n.block{\n	border-radius:50px;\n}\n/* .aboutus{\n	padding-top: 80px!important;\n  padding-bottom: 80px!important;\n} */\n.header-main .nav > li > a:hover{\n	color:#446084;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\n	font-size:25px;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\n	font-size:20px;\n}\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n\n	border-top-right-radius: 30px;\n	border-top-left-radius: 30px;\n} */\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	border-radius:30px;\n/* 	border-bottom-right-radius: 30px;\n	border-bottom-left-radius: 30px; */\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n	min-height:140px;\n	background:transparent;\n}\n.counter{\n	padding-bottom:0px!important;\n}\n.ec-counter-items-wrap{\n	padding-top:80px!important;\n	padding-bottom:0px!important;\n}\n.social-icons{\n	padding-top:50px;\n}\n\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-top-container{\n	min-height: 170px;\n} */\n\n.ec-template1 .ec-counter-item-1 .ec-count-subtitle,.ec-template1 .ec-counter-item-2 .ec-count-subtitle,.ec-template1 .ec-counter-item-3 .ec-count-subtitle{\n	font-weight:bold;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	top:18px;\n}\n\n.contactus{\n	padding-top:60px!important;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-27 04:08:14','2022-04-27 04:08:14','',32,'https://demoweblinks.in/ping/?p=547',0,'revision','',0),(548,1,'2022-04-27 04:08:28','2022-04-27 04:08:28','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n.network{\\n\\tbackground:#f5f5f5;\\n\\tpadding-top: 60px!important;\\n}\\n.team {\\n\\t box-shadow: 10px 15px #d1d1d157;\\n\\t    padding-top: 30px;\\n    padding-bottom: 30px;\\nbackground:#f8f8fa;\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n\\tborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n/* .service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n} */\\n.service-section{\\n\\tbackground:rgb(233 229 229);\\n\\tpadding-top: 60px!important;\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n.service1 h4{\\n\\tcolor:#fb0201!important;\\n}\\n.box-text.text-center .service1{\\n\\theight:250px;\\n}\\n.box-text.text-center .service2{\\n\\theight:180px;\\n}\\n.box-text.text-center .service3{\\n\\theight:140px;\\n}\\n.block{\\n\\tborder-radius:50px;\\n}\\n/* .aboutus{\\n\\tpadding-top: 80px!important;\\n  padding-bottom: 80px!important;\\n} */\\n.header-main .nav > li > a:hover{\\n\\tcolor:#446084;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\\n\\tfont-size:25px;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\\n\\tfont-size:20px;\\n}\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\n\\tborder-top-right-radius: 30px;\\n\\tborder-top-left-radius: 30px;\\n} */\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tborder-radius:30px;\\n/* \\tborder-bottom-right-radius: 30px;\\n\\tborder-bottom-left-radius: 30px; */\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\tmin-height:140px;\\n\\tbackground:transparent;\\n}\\n.counter{\\n\\tpadding-bottom:0px!important;\\n}\\n.ec-counter-items-wrap{\\n\\tpadding-top:80px!important;\\n\\tpadding-bottom:0px!important;\\n}\\n.social-icons{\\n\\tpadding-top:50px;\\n}\\n\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-top-container{\\n\\tmin-height: 170px;\\n} */\\n\\n.ec-template1 .ec-counter-item-1 .ec-count-subtitle,.ec-template1 .ec-counter-item-2 .ec-count-subtitle,.ec-template1 .ec-counter-item-3 .ec-count-subtitle{\\n\\tfont-weight:bold;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\ttop:18px;\\n}\\n\\n.contactus{\\n\\tpadding-top:60px!important;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-27 04:08:28\"\n    }\n}','','','trash','closed','closed','','89bcb444-11e1-4961-86f1-6d340274a4b3','','','2022-04-27 04:08:28','2022-04-27 04:08:28','',0,'https://demoweblinks.in/ping/2022/04/27/89bcb444-11e1-4961-86f1-6d340274a4b3/',0,'customize_changeset','',0),(549,1,'2022-04-27 04:08:28','2022-04-27 04:08:28','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n.network{\n	background:#f5f5f5;\n	padding-top: 60px!important;\n}\n.team {\n	 box-shadow: 10px 15px #d1d1d157;\n	    padding-top: 30px;\n    padding-bottom: 30px;\nbackground:#f8f8fa;\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n	border-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n/* .service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n} */\n.service-section{\n	background:rgb(233 229 229);\n	padding-top: 60px!important;\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.service1 h4{\n	color:#fb0201!important;\n}\n.box-text.text-center .service1{\n	height:250px;\n}\n.box-text.text-center .service2{\n	height:180px;\n}\n.box-text.text-center .service3{\n	height:140px;\n}\n.block{\n	border-radius:50px;\n}\n/* .aboutus{\n	padding-top: 80px!important;\n  padding-bottom: 80px!important;\n} */\n.header-main .nav > li > a:hover{\n	color:#446084;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\n	font-size:25px;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\n	font-size:20px;\n}\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n\n	border-top-right-radius: 30px;\n	border-top-left-radius: 30px;\n} */\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	border-radius:30px;\n/* 	border-bottom-right-radius: 30px;\n	border-bottom-left-radius: 30px; */\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n	min-height:140px;\n	background:transparent;\n}\n.counter{\n	padding-bottom:0px!important;\n}\n.ec-counter-items-wrap{\n	padding-top:80px!important;\n	padding-bottom:0px!important;\n}\n.social-icons{\n	padding-top:50px;\n}\n\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-top-container{\n	min-height: 170px;\n} */\n\n.ec-template1 .ec-counter-item-1 .ec-count-subtitle,.ec-template1 .ec-counter-item-2 .ec-count-subtitle,.ec-template1 .ec-counter-item-3 .ec-count-subtitle{\n	font-weight:bold;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	top:18px;\n}\n\n.contactus{\n	padding-top:60px!important;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-27 04:08:28','2022-04-27 04:08:28','',32,'https://demoweblinks.in/ping/?p=549',0,'revision','',0),(550,1,'2022-04-27 04:10:15','2022-04-27 04:10:15','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n.network{\\n\\tbackground:#f5f5f5;\\n\\tpadding-top: 60px!important;\\n}\\n.team {\\n\\t box-shadow: 10px 15px #d1d1d157;\\n\\t    padding-top: 30px;\\n    padding-bottom: 30px;\\nbackground:#f8f8fa;\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n\\tborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n/* .service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n} */\\n.service-section{\\n\\tbackground:rgb(233 229 229);\\n\\tpadding-top: 60px!important;\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n.service1 h4{\\n\\tcolor:#fb0201!important;\\n}\\n.box-text.text-center .service1{\\n\\theight:250px;\\n}\\n.box-text.text-center .service2{\\n\\theight:180px;\\n}\\n.box-text.text-center .service3{\\n\\theight:140px;\\n}\\n.block{\\n\\tborder-radius:50px;\\n} .aboutus{\\n\\tpadding-top: 18px!important;\\n  \\n} \\n.header-main .nav > li > a:hover{\\n\\tcolor:#446084;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\\n\\tfont-size:25px;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\\n\\tfont-size:20px;\\n}\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\n\\tborder-top-right-radius: 30px;\\n\\tborder-top-left-radius: 30px;\\n} */\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tborder-radius:30px;\\n/* \\tborder-bottom-right-radius: 30px;\\n\\tborder-bottom-left-radius: 30px; */\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\tmin-height:140px;\\n\\tbackground:transparent;\\n}\\n.counter{\\n\\tpadding-bottom:0px!important;\\n}\\n.ec-counter-items-wrap{\\n\\tpadding-top:80px!important;\\n\\tpadding-bottom:0px!important;\\n}\\n.social-icons{\\n\\tpadding-top:50px;\\n}\\n\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-top-container{\\n\\tmin-height: 170px;\\n} */\\n\\n.ec-template1 .ec-counter-item-1 .ec-count-subtitle,.ec-template1 .ec-counter-item-2 .ec-count-subtitle,.ec-template1 .ec-counter-item-3 .ec-count-subtitle{\\n\\tfont-weight:bold;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\ttop:18px;\\n}\\n\\n.contactus{\\n\\tpadding-top:60px!important;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-27 04:10:15\"\n    }\n}','','','trash','closed','closed','','a91a1b9b-d4d0-4d2c-8ed7-8e87b496f997','','','2022-04-27 04:10:15','2022-04-27 04:10:15','',0,'https://demoweblinks.in/ping/2022/04/27/a91a1b9b-d4d0-4d2c-8ed7-8e87b496f997/',0,'customize_changeset','',0),(551,1,'2022-04-27 04:10:15','2022-04-27 04:10:15','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n.network{\n	background:#f5f5f5;\n	padding-top: 60px!important;\n}\n.team {\n	 box-shadow: 10px 15px #d1d1d157;\n	    padding-top: 30px;\n    padding-bottom: 30px;\nbackground:#f8f8fa;\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n	border-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n/* .service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n} */\n.service-section{\n	background:rgb(233 229 229);\n	padding-top: 60px!important;\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.service1 h4{\n	color:#fb0201!important;\n}\n.box-text.text-center .service1{\n	height:250px;\n}\n.box-text.text-center .service2{\n	height:180px;\n}\n.box-text.text-center .service3{\n	height:140px;\n}\n.block{\n	border-radius:50px;\n} .aboutus{\n	padding-top: 18px!important;\n  \n} \n.header-main .nav > li > a:hover{\n	color:#446084;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\n	font-size:25px;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\n	font-size:20px;\n}\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n\n	border-top-right-radius: 30px;\n	border-top-left-radius: 30px;\n} */\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	border-radius:30px;\n/* 	border-bottom-right-radius: 30px;\n	border-bottom-left-radius: 30px; */\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n	min-height:140px;\n	background:transparent;\n}\n.counter{\n	padding-bottom:0px!important;\n}\n.ec-counter-items-wrap{\n	padding-top:80px!important;\n	padding-bottom:0px!important;\n}\n.social-icons{\n	padding-top:50px;\n}\n\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-top-container{\n	min-height: 170px;\n} */\n\n.ec-template1 .ec-counter-item-1 .ec-count-subtitle,.ec-template1 .ec-counter-item-2 .ec-count-subtitle,.ec-template1 .ec-counter-item-3 .ec-count-subtitle{\n	font-weight:bold;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	top:18px;\n}\n\n.contactus{\n	padding-top:60px!important;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-27 04:10:15','2022-04-27 04:10:15','',32,'https://demoweblinks.in/ping/?p=551',0,'revision','',0),(552,1,'2022-04-27 04:10:19','2022-04-27 04:10:19','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n.network{\\n\\tbackground:#f5f5f5;\\n\\tpadding-top: 60px!important;\\n}\\n.team {\\n\\t box-shadow: 10px 15px #d1d1d157;\\n\\t    padding-top: 30px;\\n    padding-bottom: 30px;\\nbackground:#f8f8fa;\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n\\tborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n/* .service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n} */\\n.service-section{\\n\\tbackground:rgb(233 229 229);\\n\\tpadding-top: 60px!important;\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n.service1 h4{\\n\\tcolor:#fb0201!important;\\n}\\n.box-text.text-center .service1{\\n\\theight:250px;\\n}\\n.box-text.text-center .service2{\\n\\theight:180px;\\n}\\n.box-text.text-center .service3{\\n\\theight:140px;\\n}\\n.block{\\n\\tborder-radius:50px;\\n} \\n.aboutus{\\n\\tpadding-top: 18px!important;\\n  \\n} \\n.header-main .nav > li > a:hover{\\n\\tcolor:#446084;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\\n\\tfont-size:25px;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\\n\\tfont-size:20px;\\n}\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\n\\tborder-top-right-radius: 30px;\\n\\tborder-top-left-radius: 30px;\\n} */\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tborder-radius:30px;\\n/* \\tborder-bottom-right-radius: 30px;\\n\\tborder-bottom-left-radius: 30px; */\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\tmin-height:140px;\\n\\tbackground:transparent;\\n}\\n.counter{\\n\\tpadding-bottom:0px!important;\\n}\\n.ec-counter-items-wrap{\\n\\tpadding-top:80px!important;\\n\\tpadding-bottom:0px!important;\\n}\\n.social-icons{\\n\\tpadding-top:50px;\\n}\\n\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-top-container{\\n\\tmin-height: 170px;\\n} */\\n\\n.ec-template1 .ec-counter-item-1 .ec-count-subtitle,.ec-template1 .ec-counter-item-2 .ec-count-subtitle,.ec-template1 .ec-counter-item-3 .ec-count-subtitle{\\n\\tfont-weight:bold;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\ttop:18px;\\n}\\n\\n.contactus{\\n\\tpadding-top:60px!important;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-27 04:10:19\"\n    }\n}','','','trash','closed','closed','','9237ad7e-75a3-4f02-84e2-0a991fc4e5d4','','','2022-04-27 04:10:19','2022-04-27 04:10:19','',0,'https://demoweblinks.in/ping/2022/04/27/9237ad7e-75a3-4f02-84e2-0a991fc4e5d4/',0,'customize_changeset','',0),(553,1,'2022-04-27 04:10:19','2022-04-27 04:10:19','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n.network{\n	background:#f5f5f5;\n	padding-top: 60px!important;\n}\n.team {\n	 box-shadow: 10px 15px #d1d1d157;\n	    padding-top: 30px;\n    padding-bottom: 30px;\nbackground:#f8f8fa;\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n	border-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n/* .service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n} */\n.service-section{\n	background:rgb(233 229 229);\n	padding-top: 60px!important;\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.service1 h4{\n	color:#fb0201!important;\n}\n.box-text.text-center .service1{\n	height:250px;\n}\n.box-text.text-center .service2{\n	height:180px;\n}\n.box-text.text-center .service3{\n	height:140px;\n}\n.block{\n	border-radius:50px;\n} \n.aboutus{\n	padding-top: 18px!important;\n  \n} \n.header-main .nav > li > a:hover{\n	color:#446084;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\n	font-size:25px;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\n	font-size:20px;\n}\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n\n	border-top-right-radius: 30px;\n	border-top-left-radius: 30px;\n} */\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	border-radius:30px;\n/* 	border-bottom-right-radius: 30px;\n	border-bottom-left-radius: 30px; */\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n	min-height:140px;\n	background:transparent;\n}\n.counter{\n	padding-bottom:0px!important;\n}\n.ec-counter-items-wrap{\n	padding-top:80px!important;\n	padding-bottom:0px!important;\n}\n.social-icons{\n	padding-top:50px;\n}\n\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-top-container{\n	min-height: 170px;\n} */\n\n.ec-template1 .ec-counter-item-1 .ec-count-subtitle,.ec-template1 .ec-counter-item-2 .ec-count-subtitle,.ec-template1 .ec-counter-item-3 .ec-count-subtitle{\n	font-weight:bold;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	top:18px;\n}\n\n.contactus{\n	padding-top:60px!important;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-27 04:10:19','2022-04-27 04:10:19','',32,'https://demoweblinks.in/ping/?p=553',0,'revision','',0),(554,1,'2022-04-27 06:44:18','2022-04-27 06:44:18','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n.network{\\n\\tbackground:#f5f5f5;\\n\\tpadding-top: 60px!important;\\n}\\n.team {\\n\\t box-shadow: 10px 15px #d1d1d157;\\n\\t    padding-top: 30px;\\n    padding-bottom: 30px;\\nbackground:#f8f8fa;\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n\\tborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n/* .service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n} */\\n.service-section{\\n\\tbackground:rgb(233 229 229);\\n\\tpadding-top: 60px!important;\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n.service1 h4{\\n\\tcolor:#fb0201!important;\\n}\\n.box-text.text-center .service1{\\n\\theight:250px;\\n}\\n.box-text.text-center .service2{\\n\\theight:180px;\\n}\\n.box-text.text-center .service3{\\n\\theight:140px;\\n}\\n.block{\\n\\tborder-radius:50px;\\n} \\n.aboutus{\\n\\tpadding-top: 18px!important;\\n  \\n} \\n.header-main .nav > li > a:hover{\\n\\tcolor:#446084;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\\n\\tfont-size:25px;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\\n\\tfont-size:20px;\\n}\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\n\\tborder-top-right-radius: 30px;\\n\\tborder-top-left-radius: 30px;\\n} */\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tborder-radius:30px;\\n/* \\tborder-bottom-right-radius: 30px;\\n\\tborder-bottom-left-radius: 30px; */\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\tmin-height:140px;\\n\\tbackground:transparent;\\n}\\n.counter{\\n\\tpadding-bottom:0px!important;\\n}\\n.ec-counter-items-wrap{\\n\\tpadding-top:80px!important;\\n\\tpadding-bottom:0px!important;\\n}\\n.social-icons{\\n\\tpadding-top:50px;\\n}\\n\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-top-container{\\n\\tmin-height: 170px;\\n} */\\n\\n.ec-template1 .ec-counter-item-1 .ec-count-subtitle,.ec-template1 .ec-counter-item-2 .ec-count-subtitle,.ec-template1 .ec-counter-item-3 .ec-count-subtitle{\\n\\tfont-weight:bold;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\ttop:18px;\\n}\\n\\n.contactus{\\n\\tpadding-top:60px!important;\\n}\\n.nav>li{\\n\\tmargin:0 22px;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-27 06:44:18\"\n    }\n}','','','trash','closed','closed','','8cb5656b-bc77-4ce8-8b84-cf3d7431ca9f','','','2022-04-27 06:44:18','2022-04-27 06:44:18','',0,'https://demoweblinks.in/ping/?p=554',0,'customize_changeset','',0),(555,1,'2022-04-27 06:44:18','2022-04-27 06:44:18','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n.network{\n	background:#f5f5f5;\n	padding-top: 60px!important;\n}\n.team {\n	 box-shadow: 10px 15px #d1d1d157;\n	    padding-top: 30px;\n    padding-bottom: 30px;\nbackground:#f8f8fa;\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n	border-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n/* .service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n} */\n.service-section{\n	background:rgb(233 229 229);\n	padding-top: 60px!important;\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.service1 h4{\n	color:#fb0201!important;\n}\n.box-text.text-center .service1{\n	height:250px;\n}\n.box-text.text-center .service2{\n	height:180px;\n}\n.box-text.text-center .service3{\n	height:140px;\n}\n.block{\n	border-radius:50px;\n} \n.aboutus{\n	padding-top: 18px!important;\n  \n} \n.header-main .nav > li > a:hover{\n	color:#446084;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\n	font-size:25px;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\n	font-size:20px;\n}\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n\n	border-top-right-radius: 30px;\n	border-top-left-radius: 30px;\n} */\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	border-radius:30px;\n/* 	border-bottom-right-radius: 30px;\n	border-bottom-left-radius: 30px; */\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n	min-height:140px;\n	background:transparent;\n}\n.counter{\n	padding-bottom:0px!important;\n}\n.ec-counter-items-wrap{\n	padding-top:80px!important;\n	padding-bottom:0px!important;\n}\n.social-icons{\n	padding-top:50px;\n}\n\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-top-container{\n	min-height: 170px;\n} */\n\n.ec-template1 .ec-counter-item-1 .ec-count-subtitle,.ec-template1 .ec-counter-item-2 .ec-count-subtitle,.ec-template1 .ec-counter-item-3 .ec-count-subtitle{\n	font-weight:bold;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	top:18px;\n}\n\n.contactus{\n	padding-top:60px!important;\n}\n.nav>li{\n	margin:0 22px;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-27 06:44:18','2022-04-27 06:44:18','',32,'https://demoweblinks.in/ping/?p=555',0,'revision','',0),(556,1,'2022-04-27 06:45:43','2022-04-27 06:45:43','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n.network{\\n\\tbackground:#f5f5f5;\\n\\tpadding-top: 60px!important;\\n}\\n.team {\\n\\t box-shadow: 10px 15px #d1d1d157;\\n\\t    padding-top: 30px;\\n    padding-bottom: 30px;\\nbackground:#f8f8fa;\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n\\tborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n/* .service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n} */\\n.service-section{\\n\\tbackground:rgb(233 229 229);\\n\\tpadding-top: 60px!important;\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n.service1 h4{\\n\\tcolor:#fb0201!important;\\n}\\n.box-text.text-center .service1{\\n\\theight:250px;\\n}\\n.box-text.text-center .service2{\\n\\theight:180px;\\n}\\n.box-text.text-center .service3{\\n\\theight:140px;\\n}\\n.block{\\n\\tborder-radius:50px;\\n} \\n.aboutus{\\n\\tpadding-top: 18px!important;\\n  \\n} \\n.header-main .nav > li > a:hover{\\n\\tcolor:#446084;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\\n\\tfont-size:25px;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\\n\\tfont-size:20px;\\n}\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\n\\tborder-top-right-radius: 30px;\\n\\tborder-top-left-radius: 30px;\\n} */\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tborder-radius:30px;\\n/* \\tborder-bottom-right-radius: 30px;\\n\\tborder-bottom-left-radius: 30px; */\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\tmin-height:140px;\\n\\tbackground:transparent;\\n}\\n.counter{\\n\\tpadding-bottom:0px!important;\\n}\\n.ec-counter-items-wrap{\\n\\tpadding-top:80px!important;\\n\\tpadding-bottom:0px!important;\\n}\\n.social-icons{\\n\\tpadding-top:50px;\\n}\\n\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-top-container{\\n\\tmin-height: 170px;\\n} */\\n\\n.ec-template1 .ec-counter-item-1 .ec-count-subtitle,.ec-template1 .ec-counter-item-2 .ec-count-subtitle,.ec-template1 .ec-counter-item-3 .ec-count-subtitle{\\n\\tfont-weight:bold;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\ttop:18px;\\n}\\n\\n.contactus{\\n\\tpadding-top:60px!important;\\n}\\n.nav>li{\\n\\tmargin:0 22px;\\n}\\n.nav > li > a {\\n    font-weight: 400;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-27 06:45:43\"\n    }\n}','','','trash','closed','closed','','fce3b385-8ccb-44b5-a2ae-efa72d231d72','','','2022-04-27 06:45:43','2022-04-27 06:45:43','',0,'https://demoweblinks.in/ping/2022/04/27/fce3b385-8ccb-44b5-a2ae-efa72d231d72/',0,'customize_changeset','',0),(557,1,'2022-04-27 06:45:43','2022-04-27 06:45:43','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n.network{\n	background:#f5f5f5;\n	padding-top: 60px!important;\n}\n.team {\n	 box-shadow: 10px 15px #d1d1d157;\n	    padding-top: 30px;\n    padding-bottom: 30px;\nbackground:#f8f8fa;\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n	border-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n/* .service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n} */\n.service-section{\n	background:rgb(233 229 229);\n	padding-top: 60px!important;\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.service1 h4{\n	color:#fb0201!important;\n}\n.box-text.text-center .service1{\n	height:250px;\n}\n.box-text.text-center .service2{\n	height:180px;\n}\n.box-text.text-center .service3{\n	height:140px;\n}\n.block{\n	border-radius:50px;\n} \n.aboutus{\n	padding-top: 18px!important;\n  \n} \n.header-main .nav > li > a:hover{\n	color:#446084;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\n	font-size:25px;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\n	font-size:20px;\n}\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n\n	border-top-right-radius: 30px;\n	border-top-left-radius: 30px;\n} */\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	border-radius:30px;\n/* 	border-bottom-right-radius: 30px;\n	border-bottom-left-radius: 30px; */\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n	min-height:140px;\n	background:transparent;\n}\n.counter{\n	padding-bottom:0px!important;\n}\n.ec-counter-items-wrap{\n	padding-top:80px!important;\n	padding-bottom:0px!important;\n}\n.social-icons{\n	padding-top:50px;\n}\n\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-top-container{\n	min-height: 170px;\n} */\n\n.ec-template1 .ec-counter-item-1 .ec-count-subtitle,.ec-template1 .ec-counter-item-2 .ec-count-subtitle,.ec-template1 .ec-counter-item-3 .ec-count-subtitle{\n	font-weight:bold;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	top:18px;\n}\n\n.contactus{\n	padding-top:60px!important;\n}\n.nav>li{\n	margin:0 22px;\n}\n.nav > li > a {\n    font-weight: 400;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-27 06:45:43','2022-04-27 06:45:43','',32,'https://demoweblinks.in/ping/?p=557',0,'revision','',0),(558,1,'2022-04-27 06:47:26','2022-04-27 06:47:26','{\n    \"flatsome::header_button_1_link_target\": {\n        \"value\": \"_self\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-27 06:47:26\"\n    }\n}','','','trash','closed','closed','','acbcc471-3d33-4d8f-b465-5fc133cdb490','','','2022-04-27 06:47:26','2022-04-27 06:47:26','',0,'https://demoweblinks.in/ping/2022/04/27/acbcc471-3d33-4d8f-b465-5fc133cdb490/',0,'customize_changeset','',0),(559,1,'2022-04-27 06:48:22','2022-04-27 06:48:22','{\n    \"flatsome::header_button_1_link\": {\n        \"value\": \"http://demoweblinks.in/ping/#network\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-27 06:48:22\"\n    }\n}','','','trash','closed','closed','','a5076bf8-2dba-485f-aabe-888711982a0a','','','2022-04-27 06:48:22','2022-04-27 06:48:22','',0,'https://demoweblinks.in/ping/2022/04/27/a5076bf8-2dba-485f-aabe-888711982a0a/',0,'customize_changeset','',0),(560,1,'2022-04-27 06:48:54','2022-04-27 06:48:54','{\n    \"flatsome::header_button_1_link\": {\n        \"value\": \"http://demoweblinks.in/ping/#contactus\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-27 06:48:54\"\n    },\n    \"flatsome::header_button_1_link_target\": {\n        \"value\": \"_blank\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-27 06:48:54\"\n    }\n}','','','trash','closed','closed','','31d97d28-d7f2-4bca-802f-cd7ebf02ade0','','','2022-04-27 06:48:54','2022-04-27 06:48:54','',0,'https://demoweblinks.in/ping/2022/04/27/31d97d28-d7f2-4bca-802f-cd7ebf02ade0/',0,'customize_changeset','',0),(561,1,'2022-04-27 06:51:43','2022-04-27 06:51:43','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n.network{\\n\\tbackground:#f5f5f5;\\n\\tpadding-top: 60px!important;\\n}\\n.team {\\n\\t box-shadow: 10px 15px #d1d1d157;\\n\\t    padding-top: 30px;\\n    padding-bottom: 30px;\\nbackground:#f8f8fa;\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n\\tborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n/* .service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n} */\\n.service-section{\\n\\tbackground:rgb(233 229 229);\\n\\tpadding-top: 60px!important;\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n.service1 h4{\\n\\tcolor:#fb0201!important;\\n}\\n.box-text.text-center .service1{\\n\\theight:250px;\\n}\\n.box-text.text-center .service2{\\n\\theight:180px;\\n}\\n.box-text.text-center .service3{\\n\\theight:140px;\\n}\\n.block{\\n\\tborder-radius:50px;\\n} \\n.aboutus{\\n\\tpadding-top: 18px!important;\\n  \\n} \\n.header-main .nav > li > a:hover{\\n\\tcolor:#446084;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\\n\\tfont-size:25px;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\\n\\tfont-size:20px;\\n}\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\n\\tborder-top-right-radius: 30px;\\n\\tborder-top-left-radius: 30px;\\n} */\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tborder-radius:30px;\\n/* \\tborder-bottom-right-radius: 30px;\\n\\tborder-bottom-left-radius: 30px; */\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\tmin-height:140px;\\n\\tbackground:transparent;\\n}\\n.counter{\\n\\tpadding-bottom:0px!important;\\n}\\n.ec-counter-items-wrap{\\n\\tpadding-top:80px!important;\\n\\tpadding-bottom:0px!important;\\n}\\n.social-icons{\\n\\tpadding-top:50px;\\n}\\n\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-top-container{\\n\\tmin-height: 170px;\\n} */\\n\\n.ec-template1 .ec-counter-item-1 .ec-count-subtitle,.ec-template1 .ec-counter-item-2 .ec-count-subtitle,.ec-template1 .ec-counter-item-3 .ec-count-subtitle{\\n\\tfont-weight:bold;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\ttop:18px;\\n}\\n\\n.contactus{\\n\\tpadding-top:60px!important;\\n}\\n.nav>li{\\n\\tmargin:0 22px;\\n}\\n.nav > li > a {\\n    font-weight: 400;\\n}\\n.network .box-text h4{\\n\\tdisplay:none;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-27 06:51:43\"\n    }\n}','','','trash','closed','closed','','1d868793-1a8c-4816-bd8b-9c4e5deb8515','','','2022-04-27 06:51:43','2022-04-27 06:51:43','',0,'https://demoweblinks.in/ping/2022/04/27/1d868793-1a8c-4816-bd8b-9c4e5deb8515/',0,'customize_changeset','',0),(562,1,'2022-04-27 06:51:43','2022-04-27 06:51:43','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n.network{\n	background:#f5f5f5;\n	padding-top: 60px!important;\n}\n.team {\n	 box-shadow: 10px 15px #d1d1d157;\n	    padding-top: 30px;\n    padding-bottom: 30px;\nbackground:#f8f8fa;\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n	border-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n/* .service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n} */\n.service-section{\n	background:rgb(233 229 229);\n	padding-top: 60px!important;\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.service1 h4{\n	color:#fb0201!important;\n}\n.box-text.text-center .service1{\n	height:250px;\n}\n.box-text.text-center .service2{\n	height:180px;\n}\n.box-text.text-center .service3{\n	height:140px;\n}\n.block{\n	border-radius:50px;\n} \n.aboutus{\n	padding-top: 18px!important;\n  \n} \n.header-main .nav > li > a:hover{\n	color:#446084;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\n	font-size:25px;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\n	font-size:20px;\n}\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n\n	border-top-right-radius: 30px;\n	border-top-left-radius: 30px;\n} */\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	border-radius:30px;\n/* 	border-bottom-right-radius: 30px;\n	border-bottom-left-radius: 30px; */\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n	min-height:140px;\n	background:transparent;\n}\n.counter{\n	padding-bottom:0px!important;\n}\n.ec-counter-items-wrap{\n	padding-top:80px!important;\n	padding-bottom:0px!important;\n}\n.social-icons{\n	padding-top:50px;\n}\n\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-top-container{\n	min-height: 170px;\n} */\n\n.ec-template1 .ec-counter-item-1 .ec-count-subtitle,.ec-template1 .ec-counter-item-2 .ec-count-subtitle,.ec-template1 .ec-counter-item-3 .ec-count-subtitle{\n	font-weight:bold;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	top:18px;\n}\n\n.contactus{\n	padding-top:60px!important;\n}\n.nav>li{\n	margin:0 22px;\n}\n.nav > li > a {\n    font-weight: 400;\n}\n.network .box-text h4{\n	display:none;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-27 06:51:43','2022-04-27 06:51:43','',32,'https://demoweblinks.in/ping/?p=562',0,'revision','',0),(563,1,'2022-04-27 06:55:06','2022-04-27 06:55:06','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(233, 229, 228)\" padding=\"0px\" class=\"counter\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section bg_color=\"rgb(255, 255, 255)\" class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"506\" image_width=\"37\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"505\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"504\" image_width=\"53\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"502\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"501\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"500\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"490\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"489\" image_width=\"47\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"488\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Youtube Channels</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"312\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Contact us</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-27 06:55:06','2022-04-27 06:55:06','',6,'https://demoweblinks.in/ping/?p=563',0,'revision','',0),(564,1,'2022-04-27 06:58:05','2022-04-27 06:58:05','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(233, 229, 228)\" padding=\"0px\" class=\"counter\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section bg_color=\"rgb(255, 255, 255)\" class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"506\" image_width=\"37\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"505\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"504\" image_width=\"53\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"502\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"501\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"500\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"490\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"489\" image_width=\"47\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"488\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Youtube Channels</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"312\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"45\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"45\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"45\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"45\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"45\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"45\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"45\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"45\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Contact us</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-27 06:58:05','2022-04-27 06:58:05','',6,'https://demoweblinks.in/ping/?p=564',0,'revision','',0),(565,1,'2022-04-27 07:01:29','2022-04-27 07:01:29','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(233, 229, 228)\" padding=\"0px\" class=\"counter\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section bg_color=\"rgb(255, 255, 255)\" class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"506\" image_width=\"37\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"505\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"504\" image_width=\"53\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"502\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"501\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"500\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"490\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"489\" image_width=\"47\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"488\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Youtube Channels</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"312\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"45\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"45\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"45\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"45\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"45\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"45\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"45\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"45\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[scroll_to title=\"contact\" bullet=\"false\"]\n\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Contact us</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-27 07:01:29','2022-04-27 07:01:29','',6,'https://demoweblinks.in/ping/?p=565',0,'revision','',0),(566,1,'2022-04-27 07:01:40','2022-04-27 07:01:40','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(233, 229, 228)\" padding=\"0px\" class=\"counter\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section bg_color=\"rgb(255, 255, 255)\" class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"506\" image_width=\"37\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"505\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"504\" image_width=\"53\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"502\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"501\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"500\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"490\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"489\" image_width=\"47\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"488\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Youtube Channels</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"312\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"45\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"45\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"45\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"45\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"45\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"45\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"45\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"45\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[scroll_to title=\"contactus\" bullet=\"false\"]\n\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Contact us</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-27 07:01:40','2022-04-27 07:01:40','',6,'https://demoweblinks.in/ping/?p=566',0,'revision','',0),(567,1,'2022-04-27 07:08:39','2022-04-27 07:08:39','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(233, 229, 228)\" padding=\"0px\" class=\"counter\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section bg_color=\"rgb(255, 255, 255)\" class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"506\" image_width=\"37\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"505\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"504\" image_width=\"53\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"502\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"501\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"500\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"490\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"489\" image_width=\"47\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"488\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Youtube Channels</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"312\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[scroll_to title=\"contactus\" bullet=\"false\"]\n\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Contact us</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-27 07:08:39','2022-04-27 07:08:39','',6,'https://demoweblinks.in/ping/?p=567',0,'revision','',0),(568,1,'2022-04-27 07:09:31','2022-04-27 07:09:31','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n.network{\\n\\tbackground:#f5f5f5;\\n\\tpadding-top: 60px!important;\\n}\\n.team {\\n\\t box-shadow: 10px 15px #d1d1d157;\\n\\t    padding-top: 30px;\\n    padding-bottom: 30px;\\nbackground:#f8f8fa;\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n\\tborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n/* .service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n} */\\n.service-section{\\n\\tbackground:rgb(233 229 229);\\n\\tpadding-top: 60px!important;\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n.service1 h4{\\n\\tcolor:#fb0201!important;\\n}\\n.service2 h4{\\n\\tcolor:#fb0201!important;\\n}\\n.service3 h4{\\n\\tcolor:#fb0201!important;\\n}\\n.box-text.text-center .service1{\\n\\theight:250px;\\n}\\n.box-text.text-center .service2{\\n\\theight:180px;\\n}\\n.box-text.text-center .service3{\\n\\theight:140px;\\n}\\n.block{\\n\\tborder-radius:50px;\\n} \\n.aboutus{\\n\\tpadding-top: 18px!important;\\n  \\n} \\n.header-main .nav > li > a:hover{\\n\\tcolor:#446084;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\\n\\tfont-size:25px;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\\n\\tfont-size:20px;\\n}\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\n\\tborder-top-right-radius: 30px;\\n\\tborder-top-left-radius: 30px;\\n} */\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tborder-radius:30px;\\n/* \\tborder-bottom-right-radius: 30px;\\n\\tborder-bottom-left-radius: 30px; */\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\tmin-height:140px;\\n\\tbackground:transparent;\\n}\\n.counter{\\n\\tpadding-bottom:0px!important;\\n}\\n.ec-counter-items-wrap{\\n\\tpadding-top:80px!important;\\n\\tpadding-bottom:0px!important;\\n}\\n.social-icons{\\n\\tpadding-top:50px;\\n}\\n\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-top-container{\\n\\tmin-height: 170px;\\n} */\\n\\n.ec-template1 .ec-counter-item-1 .ec-count-subtitle,.ec-template1 .ec-counter-item-2 .ec-count-subtitle,.ec-template1 .ec-counter-item-3 .ec-count-subtitle{\\n\\tfont-weight:bold;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\ttop:18px;\\n}\\n\\n.contactus{\\n\\tpadding-top:60px!important;\\n}\\n.nav>li{\\n\\tmargin:0 22px;\\n}\\n.nav > li > a {\\n    font-weight: 400;\\n}\\n.network .box-text h4{\\n\\tdisplay:none;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-27 07:09:31\"\n    }\n}','','','trash','closed','closed','','1133d5e0-e0dc-42d6-a4d8-fdb021903cce','','','2022-04-27 07:09:31','2022-04-27 07:09:31','',0,'https://demoweblinks.in/ping/2022/04/27/1133d5e0-e0dc-42d6-a4d8-fdb021903cce/',0,'customize_changeset','',0),(569,1,'2022-04-27 07:09:31','2022-04-27 07:09:31','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n.network{\n	background:#f5f5f5;\n	padding-top: 60px!important;\n}\n.team {\n	 box-shadow: 10px 15px #d1d1d157;\n	    padding-top: 30px;\n    padding-bottom: 30px;\nbackground:#f8f8fa;\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n	border-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n/* .service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n} */\n.service-section{\n	background:rgb(233 229 229);\n	padding-top: 60px!important;\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.service1 h4{\n	color:#fb0201!important;\n}\n.service2 h4{\n	color:#fb0201!important;\n}\n.service3 h4{\n	color:#fb0201!important;\n}\n.box-text.text-center .service1{\n	height:250px;\n}\n.box-text.text-center .service2{\n	height:180px;\n}\n.box-text.text-center .service3{\n	height:140px;\n}\n.block{\n	border-radius:50px;\n} \n.aboutus{\n	padding-top: 18px!important;\n  \n} \n.header-main .nav > li > a:hover{\n	color:#446084;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\n	font-size:25px;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\n	font-size:20px;\n}\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n\n	border-top-right-radius: 30px;\n	border-top-left-radius: 30px;\n} */\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	border-radius:30px;\n/* 	border-bottom-right-radius: 30px;\n	border-bottom-left-radius: 30px; */\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n	min-height:140px;\n	background:transparent;\n}\n.counter{\n	padding-bottom:0px!important;\n}\n.ec-counter-items-wrap{\n	padding-top:80px!important;\n	padding-bottom:0px!important;\n}\n.social-icons{\n	padding-top:50px;\n}\n\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-top-container{\n	min-height: 170px;\n} */\n\n.ec-template1 .ec-counter-item-1 .ec-count-subtitle,.ec-template1 .ec-counter-item-2 .ec-count-subtitle,.ec-template1 .ec-counter-item-3 .ec-count-subtitle{\n	font-weight:bold;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	top:18px;\n}\n\n.contactus{\n	padding-top:60px!important;\n}\n.nav>li{\n	margin:0 22px;\n}\n.nav > li > a {\n    font-weight: 400;\n}\n.network .box-text h4{\n	display:none;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-27 07:09:31','2022-04-27 07:09:31','',32,'https://demoweblinks.in/ping/?p=569',0,'revision','',0),(570,1,'2022-04-27 07:13:06','2022-04-27 07:13:06','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n.network{\\n\\tbackground:#f5f5f5;\\n\\tpadding-top: 60px!important;\\n}\\n.team {\\n\\t box-shadow: 10px 15px #d1d1d157;\\n\\t    padding-top: 30px;\\n    padding-bottom: 30px;\\nbackground:#f8f8fa;\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n\\tborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n/* .service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n} */\\n.service-section{\\n\\tbackground:rgb(233 229 229);\\n\\tpadding-top: 60px!important;\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n.service1 h4{\\n\\tcolor:#fb0201!important;\\n}\\n.service2 h4{\\n\\tcolor:#fb0201!important;\\n}\\n.service3 h4{\\n\\tcolor:#fb0201!important;\\n}\\n.box-text.text-center .service1{\\n\\theight:250px;\\n}\\n.box-text.text-center .service2{\\n\\theight:180px;\\n}\\n.box-text.text-center .service3{\\n\\theight:140px;\\n}\\n.block{\\n\\tborder-radius:50px;\\n} \\n.aboutus{\\n\\tpadding-top: 18px!important;\\n  \\n} \\n.header-main .nav > li > a:hover{\\n\\tcolor:#446084;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\\n\\tfont-size:25px;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\\n\\tfont-size:20px;\\n}\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\n\\tborder-top-right-radius: 30px;\\n\\tborder-top-left-radius: 30px;\\n} */\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tborder-radius:30px;\\n/* \\tborder-bottom-right-radius: 30px;\\n\\tborder-bottom-left-radius: 30px; */\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\tmin-height:140px;\\n\\tbackground:transparent;\\n}\\n.counter{\\n\\tpadding-bottom:0px!important;\\n}\\n.ec-counter-items-wrap{\\n\\tpadding-top:80px!important;\\n\\tpadding-bottom:0px!important;\\n}\\n.social-icons{\\n\\tpadding-top:50px;\\n}\\n\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-top-container{\\n\\tmin-height: 170px;\\n} */\\n\\n.ec-template1 .ec-counter-item-1 .ec-count-subtitle,.ec-template1 .ec-counter-item-2 .ec-count-subtitle,.ec-template1 .ec-counter-item-3 .ec-count-subtitle{\\n\\tfont-weight:bold;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\ttop:18px;\\n}\\n\\n.contactus{\\n\\tpadding-top:60px!important;\\n}\\n.nav>li{\\n\\tmargin:0 22px;\\n}\\n.nav > li > a {\\n    font-weight: 400;\\n}\\n.network .box-text h4{\\n\\tdisplay:none;\\n}\\n.contactus .col{\\n\\tpadding: 0 15px 0px;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-27 07:13:06\"\n    }\n}','','','trash','closed','closed','','12ff0f34-afa8-4b92-8e64-5bb6341bc7fa','','','2022-04-27 07:13:06','2022-04-27 07:13:06','',0,'https://demoweblinks.in/ping/?p=570',0,'customize_changeset','',0),(571,1,'2022-04-27 07:13:06','2022-04-27 07:13:06','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n.network{\n	background:#f5f5f5;\n	padding-top: 60px!important;\n}\n.team {\n	 box-shadow: 10px 15px #d1d1d157;\n	    padding-top: 30px;\n    padding-bottom: 30px;\nbackground:#f8f8fa;\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n	border-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n/* .service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n} */\n.service-section{\n	background:rgb(233 229 229);\n	padding-top: 60px!important;\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.service1 h4{\n	color:#fb0201!important;\n}\n.service2 h4{\n	color:#fb0201!important;\n}\n.service3 h4{\n	color:#fb0201!important;\n}\n.box-text.text-center .service1{\n	height:250px;\n}\n.box-text.text-center .service2{\n	height:180px;\n}\n.box-text.text-center .service3{\n	height:140px;\n}\n.block{\n	border-radius:50px;\n} \n.aboutus{\n	padding-top: 18px!important;\n  \n} \n.header-main .nav > li > a:hover{\n	color:#446084;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\n	font-size:25px;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\n	font-size:20px;\n}\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n\n	border-top-right-radius: 30px;\n	border-top-left-radius: 30px;\n} */\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	border-radius:30px;\n/* 	border-bottom-right-radius: 30px;\n	border-bottom-left-radius: 30px; */\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n	min-height:140px;\n	background:transparent;\n}\n.counter{\n	padding-bottom:0px!important;\n}\n.ec-counter-items-wrap{\n	padding-top:80px!important;\n	padding-bottom:0px!important;\n}\n.social-icons{\n	padding-top:50px;\n}\n\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-top-container{\n	min-height: 170px;\n} */\n\n.ec-template1 .ec-counter-item-1 .ec-count-subtitle,.ec-template1 .ec-counter-item-2 .ec-count-subtitle,.ec-template1 .ec-counter-item-3 .ec-count-subtitle{\n	font-weight:bold;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	top:18px;\n}\n\n.contactus{\n	padding-top:60px!important;\n}\n.nav>li{\n	margin:0 22px;\n}\n.nav > li > a {\n    font-weight: 400;\n}\n.network .box-text h4{\n	display:none;\n}\n.contactus .col{\n	padding: 0 15px 0px;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-27 07:13:06','2022-04-27 07:13:06','',32,'https://demoweblinks.in/ping/?p=571',0,'revision','',0),(572,1,'2022-04-27 07:14:21','2022-04-27 07:14:21','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h1><b>Ping Network</b></h1>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</p>\n\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(233, 229, 228)\" padding=\"0px\" class=\"counter\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section bg_color=\"rgb(255, 255, 255)\" class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"506\" image_width=\"37\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"505\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"504\" image_width=\"53\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"502\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"501\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"500\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"490\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"489\" image_width=\"47\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"488\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Youtube Channels</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"312\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[scroll_to title=\"contactus\" bullet=\"false\"]\n\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Contact us</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-27 07:14:21','2022-04-27 07:14:21','',6,'https://demoweblinks.in/ping/?p=572',0,'revision','',0),(573,1,'2022-04-27 07:16:39','2022-04-27 07:16:39','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n.network{\\n\\tbackground:#f5f5f5;\\n\\tpadding-top: 60px!important;\\n}\\n.team {\\n\\t box-shadow: 10px 15px #d1d1d157;\\n\\t    padding-top: 30px;\\n    padding-bottom: 30px;\\nbackground:#f8f8fa;\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n\\tborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n/* .service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n} */\\n.service-section{\\n\\tbackground:rgb(233 229 229);\\n\\tpadding-top: 60px!important;\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n.service1 h4{\\n\\tcolor:#fb0201!important;\\n}\\n.service2 h4{\\n\\tcolor:#fb0201!important;\\n}\\n.service3 h4{\\n\\tcolor:#fb0201!important;\\n}\\n.box-text.text-center .service1{\\n\\theight:250px;\\n}\\n.box-text.text-center .service2{\\n\\theight:180px;\\n}\\n.box-text.text-center .service3{\\n\\theight:140px;\\n}\\n.block{\\n\\tborder-radius:50px;\\n} \\n.aboutus{\\n\\tpadding-top: 18px!important;\\n  \\n} \\n.header-main .nav > li > a:hover{\\n\\tcolor:#446084;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\\n\\tfont-size:25px;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\\n\\tfont-size:20px;\\n}\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\n\\tborder-top-right-radius: 30px;\\n\\tborder-top-left-radius: 30px;\\n} */\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tborder-radius:30px;\\n/* \\tborder-bottom-right-radius: 30px;\\n\\tborder-bottom-left-radius: 30px; */\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\tmin-height:140px;\\n\\tbackground:transparent;\\n}\\n.counter{\\n\\tpadding-bottom:0px!important;\\n}\\n.ec-counter-items-wrap{\\n\\tpadding-top:80px!important;\\n\\tpadding-bottom:0px!important;\\n}\\n.social-icons{\\n\\tpadding-top:50px;\\n}\\n\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-top-container{\\n\\tmin-height: 170px;\\n} */\\n\\n.ec-template1 .ec-counter-item-1 .ec-count-subtitle,.ec-template1 .ec-counter-item-2 .ec-count-subtitle,.ec-template1 .ec-counter-item-3 .ec-count-subtitle{\\n\\tfont-weight:bold;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\ttop:18px;\\n}\\n\\n.contactus{\\n\\tpadding-top:60px!important;\\n}\\n.nav>li{\\n\\tmargin:0 22px;\\n}\\n.nav > li > a {\\n    font-weight: 400;\\n}\\n.network .box-text h4{\\n\\tdisplay:none;\\n}\\n.contactus .col{\\n\\tpadding: 0 15px 0px;\\n}\\nh2{\\n\\tletter-spacing:5px;\\n\\tfont-weight:400;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-27 07:16:39\"\n    }\n}','','','trash','closed','closed','','0384dcf5-71a5-4b6a-8f69-c82d824adc9b','','','2022-04-27 07:16:39','2022-04-27 07:16:39','',0,'https://demoweblinks.in/ping/2022/04/27/0384dcf5-71a5-4b6a-8f69-c82d824adc9b/',0,'customize_changeset','',0),(574,1,'2022-04-27 07:16:39','2022-04-27 07:16:39','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n.network{\n	background:#f5f5f5;\n	padding-top: 60px!important;\n}\n.team {\n	 box-shadow: 10px 15px #d1d1d157;\n	    padding-top: 30px;\n    padding-bottom: 30px;\nbackground:#f8f8fa;\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n	border-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n/* .service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n} */\n.service-section{\n	background:rgb(233 229 229);\n	padding-top: 60px!important;\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.service1 h4{\n	color:#fb0201!important;\n}\n.service2 h4{\n	color:#fb0201!important;\n}\n.service3 h4{\n	color:#fb0201!important;\n}\n.box-text.text-center .service1{\n	height:250px;\n}\n.box-text.text-center .service2{\n	height:180px;\n}\n.box-text.text-center .service3{\n	height:140px;\n}\n.block{\n	border-radius:50px;\n} \n.aboutus{\n	padding-top: 18px!important;\n  \n} \n.header-main .nav > li > a:hover{\n	color:#446084;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\n	font-size:25px;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\n	font-size:20px;\n}\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n\n	border-top-right-radius: 30px;\n	border-top-left-radius: 30px;\n} */\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	border-radius:30px;\n/* 	border-bottom-right-radius: 30px;\n	border-bottom-left-radius: 30px; */\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n	min-height:140px;\n	background:transparent;\n}\n.counter{\n	padding-bottom:0px!important;\n}\n.ec-counter-items-wrap{\n	padding-top:80px!important;\n	padding-bottom:0px!important;\n}\n.social-icons{\n	padding-top:50px;\n}\n\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-top-container{\n	min-height: 170px;\n} */\n\n.ec-template1 .ec-counter-item-1 .ec-count-subtitle,.ec-template1 .ec-counter-item-2 .ec-count-subtitle,.ec-template1 .ec-counter-item-3 .ec-count-subtitle{\n	font-weight:bold;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	top:18px;\n}\n\n.contactus{\n	padding-top:60px!important;\n}\n.nav>li{\n	margin:0 22px;\n}\n.nav > li > a {\n    font-weight: 400;\n}\n.network .box-text h4{\n	display:none;\n}\n.contactus .col{\n	padding: 0 15px 0px;\n}\nh2{\n	letter-spacing:5px;\n	font-weight:400;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-27 07:16:39','2022-04-27 07:16:39','',32,'https://demoweblinks.in/ping/?p=574',0,'revision','',0),(575,1,'2022-04-27 07:17:38','2022-04-27 07:17:38','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h2>Ping Network</h2>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</p>\n\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(233, 229, 228)\" padding=\"0px\" class=\"counter\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section bg_color=\"rgb(255, 255, 255)\" class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"506\" image_width=\"37\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"505\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"504\" image_width=\"53\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"502\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"501\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"500\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"490\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"489\" image_width=\"47\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"488\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Youtube Channels</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"312\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[scroll_to title=\"contactus\" bullet=\"false\"]\n\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Contact us</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-27 07:17:38','2022-04-27 07:17:38','',6,'https://demoweblinks.in/ping/?p=575',0,'revision','',0),(576,1,'2022-04-27 07:33:41','2022-04-27 07:33:41','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h2>Ping Network</h2>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</p>\n\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(233, 229, 228)\" padding=\"0px\" class=\"counter\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section bg_color=\"rgb(255, 255, 255)\" class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"506\" image_width=\"37\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"505\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"504\" image_width=\"53\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"502\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"501\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"500\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"490\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"489\" image_width=\"47\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"488\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Youtube Channels</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"312\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[scroll_to title=\"contactus\" bullet=\"false\"]\n\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Contact us</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-27 07:33:41','2022-04-27 07:33:41','',6,'https://demoweblinks.in/ping/?p=576',0,'revision','',0),(577,1,'2022-04-27 07:34:16','2022-04-27 07:34:16','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h2>Ping Network</h2>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</p>\n\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(233, 229, 228)\" padding=\"0px\" class=\"counter\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section bg_color=\"rgb(255, 255, 255)\" class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"506\" image_width=\"37\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"505\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"504\" image_width=\"53\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"502\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"501\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"500\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"490\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"489\" image_width=\"47\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"488\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Youtube Channels</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"312\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[scroll_to title=\"contactus\" bullet=\"false\"]\n\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Contact us</h2>\n[/ux_text]\n[gap]\n\n\n[/col]\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-27 07:34:16','2022-04-27 07:34:16','',6,'https://demoweblinks.in/ping/?p=577',0,'revision','',0),(578,1,'2022-04-27 07:37:35','2022-04-27 07:37:35','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n.network{\\n\\tbackground:#f5f5f5;\\n\\tpadding-top: 60px!important;\\n}\\n.team {\\n\\t box-shadow: 10px 15px #d1d1d157;\\n\\t    padding-top: 30px;\\n    padding-bottom: 30px;\\nbackground:#f8f8fa;\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n\\tborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n/* .service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n} */\\n.service-section{\\n\\tbackground:rgb(233 229 229);\\n\\tpadding-top: 60px!important;\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n.service1 h4{\\n\\tcolor:#fb0201!important;\\n}\\n.service2 h4{\\n\\tcolor:#fb0201!important;\\n}\\n.service3 h4{\\n\\tcolor:#fb0201!important;\\n}\\n.box-text.text-center .service1{\\n\\theight:250px;\\n}\\n.box-text.text-center .service2{\\n\\theight:180px;\\n}\\n.box-text.text-center .service3{\\n\\theight:140px;\\n}\\n.block{\\n\\tborder-radius:50px;\\n} \\n.aboutus{\\n\\tpadding-top: 18px!important;\\n  \\n} \\n.header-main .nav > li > a:hover{\\n\\tcolor:#446084;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\\n\\tfont-size:25px;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\\n\\tfont-size:20px;\\n}\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\n\\tborder-top-right-radius: 30px;\\n\\tborder-top-left-radius: 30px;\\n} */\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tborder-radius:30px;\\n/* \\tborder-bottom-right-radius: 30px;\\n\\tborder-bottom-left-radius: 30px; */\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\tmin-height:140px;\\n\\tbackground:transparent;\\n}\\n.counter{\\n\\tpadding-bottom:0px!important;\\n}\\n.ec-counter-items-wrap{\\n\\tpadding-top:80px!important;\\n\\tpadding-bottom:0px!important;\\n}\\n.social-icons{\\n\\tpadding-top:50px;\\n}\\n\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-top-container{\\n\\tmin-height: 170px;\\n} */\\n\\n.ec-template1 .ec-counter-item-1 .ec-count-subtitle,.ec-template1 .ec-counter-item-2 .ec-count-subtitle,.ec-template1 .ec-counter-item-3 .ec-count-subtitle{\\n\\tfont-weight:bold;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\ttop:18px;\\n}\\n\\n.contactus{\\n\\tpadding-top:60px!important;\\n}\\n.nav>li{\\n\\tmargin:0 22px;\\n}\\n.nav > li > a {\\n    font-weight: 400;\\n}\\n/* .network .box-text h4{\\n\\tdisplay:none; */\\n}\\n.contactus .col{\\n\\tpadding: 0 15px 0px;\\n}\\nh2{\\n\\tletter-spacing:5px;\\n\\tfont-weight:400;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-27 07:37:35\"\n    }\n}','','','trash','closed','closed','','0b3f09c6-5605-48cd-bbd0-f4854dc64b2d','','','2022-04-27 07:37:35','2022-04-27 07:37:35','',0,'https://demoweblinks.in/ping/2022/04/27/0b3f09c6-5605-48cd-bbd0-f4854dc64b2d/',0,'customize_changeset','',0),(579,1,'2022-04-27 07:37:35','2022-04-27 07:37:35','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n.network{\n	background:#f5f5f5;\n	padding-top: 60px!important;\n}\n.team {\n	 box-shadow: 10px 15px #d1d1d157;\n	    padding-top: 30px;\n    padding-bottom: 30px;\nbackground:#f8f8fa;\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n	border-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n/* .service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n} */\n.service-section{\n	background:rgb(233 229 229);\n	padding-top: 60px!important;\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.service1 h4{\n	color:#fb0201!important;\n}\n.service2 h4{\n	color:#fb0201!important;\n}\n.service3 h4{\n	color:#fb0201!important;\n}\n.box-text.text-center .service1{\n	height:250px;\n}\n.box-text.text-center .service2{\n	height:180px;\n}\n.box-text.text-center .service3{\n	height:140px;\n}\n.block{\n	border-radius:50px;\n} \n.aboutus{\n	padding-top: 18px!important;\n  \n} \n.header-main .nav > li > a:hover{\n	color:#446084;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\n	font-size:25px;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\n	font-size:20px;\n}\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n\n	border-top-right-radius: 30px;\n	border-top-left-radius: 30px;\n} */\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	border-radius:30px;\n/* 	border-bottom-right-radius: 30px;\n	border-bottom-left-radius: 30px; */\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n	min-height:140px;\n	background:transparent;\n}\n.counter{\n	padding-bottom:0px!important;\n}\n.ec-counter-items-wrap{\n	padding-top:80px!important;\n	padding-bottom:0px!important;\n}\n.social-icons{\n	padding-top:50px;\n}\n\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-top-container{\n	min-height: 170px;\n} */\n\n.ec-template1 .ec-counter-item-1 .ec-count-subtitle,.ec-template1 .ec-counter-item-2 .ec-count-subtitle,.ec-template1 .ec-counter-item-3 .ec-count-subtitle{\n	font-weight:bold;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	top:18px;\n}\n\n.contactus{\n	padding-top:60px!important;\n}\n.nav>li{\n	margin:0 22px;\n}\n.nav > li > a {\n    font-weight: 400;\n}\n/* .network .box-text h4{\n	display:none; */\n}\n.contactus .col{\n	padding: 0 15px 0px;\n}\nh2{\n	letter-spacing:5px;\n	font-weight:400;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-27 07:37:35','2022-04-27 07:37:35','',32,'https://demoweblinks.in/ping/?p=579',0,'revision','',0),(580,1,'2022-04-27 07:39:06','2022-04-27 07:39:06','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h2>Ping Network</h2>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(233, 229, 228)\" padding=\"0px\" class=\"counter\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section bg_color=\"rgb(255, 255, 255)\" class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"506\" image_width=\"37\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"505\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"504\" image_width=\"53\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"502\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"501\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"500\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"490\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"489\" image_width=\"47\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"488\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Youtube Channels</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"312\" name=\"The Stupendous Wave\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[scroll_to title=\"contactus\" bullet=\"false\"]\n\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Contact us</h2>\n[/ux_text]\n[gap]\n\n\n[/col]\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-27 07:39:06','2022-04-27 07:39:06','',6,'https://demoweblinks.in/ping/?p=580',0,'revision','',0),(581,1,'2022-04-27 07:41:36','2022-04-27 07:41:36','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n.network{\\n\\tbackground:#f5f5f5;\\n\\tpadding-top: 60px!important;\\n}\\n.team {\\n\\t box-shadow: 10px 15px #d1d1d157;\\n\\t    padding-top: 30px;\\n    padding-bottom: 30px;\\nbackground:#f8f8fa;\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n\\tborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n/* .service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n} */\\n.service-section{\\n\\tbackground:rgb(233 229 229);\\n\\tpadding-top: 60px!important;\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n.service1 h4{\\n\\tcolor:#fb0201!important;\\n}\\n.service2 h4{\\n\\tcolor:#fb0201!important;\\n}\\n.service3 h4{\\n\\tcolor:#fb0201!important;\\n}\\n.box-text.text-center .service1{\\n\\theight:250px;\\n}\\n.box-text.text-center .service2{\\n\\theight:180px;\\n}\\n.box-text.text-center .service3{\\n\\theight:140px;\\n}\\n.block{\\n\\tborder-radius:50px;\\n} \\n.aboutus{\\n\\tpadding-top: 18px!important;\\n  \\n} \\n.header-main .nav > li > a:hover{\\n\\tcolor:#446084;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\\n\\tfont-size:25px;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\\n\\tfont-size:20px;\\n}\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\n\\tborder-top-right-radius: 30px;\\n\\tborder-top-left-radius: 30px;\\n} */\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tborder-radius:30px;\\n/* \\tborder-bottom-right-radius: 30px;\\n\\tborder-bottom-left-radius: 30px; */\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\tmin-height:140px;\\n\\tbackground:transparent;\\n}\\n.counter{\\n\\tpadding-bottom:0px!important;\\n}\\n.ec-counter-items-wrap{\\n\\tpadding-top:80px!important;\\n\\tpadding-bottom:0px!important;\\n}\\n.social-icons{\\n\\tpadding-top:50px;\\n}\\n\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-top-container{\\n\\tmin-height: 170px;\\n} */\\n\\n.ec-template1 .ec-counter-item-1 .ec-count-subtitle,.ec-template1 .ec-counter-item-2 .ec-count-subtitle,.ec-template1 .ec-counter-item-3 .ec-count-subtitle{\\n\\tfont-weight:bold;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\ttop:18px;\\n}\\n\\n.contactus{\\n\\tpadding-top:60px!important;\\n}\\n.nav>li{\\n\\tmargin:0 22px;\\n}\\n.nav > li > a {\\n    font-weight: 400;\\n}\\n .network .box-text h4{\\n\\tdisplay:none; \\n\\t text-transform:capitalize;\\n}\\n.contactus .col{\\n\\tpadding: 0 15px 0px;\\n}\\nh2{\\n\\tletter-spacing:5px;\\n\\tfont-weight:400;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-27 07:41:36\"\n    }\n}','','','trash','closed','closed','','83e6fcdf-7746-47d7-9b15-2d8d24adde5d','','','2022-04-27 07:41:36','2022-04-27 07:41:36','',0,'https://demoweblinks.in/ping/2022/04/27/83e6fcdf-7746-47d7-9b15-2d8d24adde5d/',0,'customize_changeset','',0),(582,1,'2022-04-27 07:41:36','2022-04-27 07:41:36','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n.network{\n	background:#f5f5f5;\n	padding-top: 60px!important;\n}\n.team {\n	 box-shadow: 10px 15px #d1d1d157;\n	    padding-top: 30px;\n    padding-bottom: 30px;\nbackground:#f8f8fa;\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n	border-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n/* .service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n} */\n.service-section{\n	background:rgb(233 229 229);\n	padding-top: 60px!important;\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.service1 h4{\n	color:#fb0201!important;\n}\n.service2 h4{\n	color:#fb0201!important;\n}\n.service3 h4{\n	color:#fb0201!important;\n}\n.box-text.text-center .service1{\n	height:250px;\n}\n.box-text.text-center .service2{\n	height:180px;\n}\n.box-text.text-center .service3{\n	height:140px;\n}\n.block{\n	border-radius:50px;\n} \n.aboutus{\n	padding-top: 18px!important;\n  \n} \n.header-main .nav > li > a:hover{\n	color:#446084;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\n	font-size:25px;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\n	font-size:20px;\n}\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n\n	border-top-right-radius: 30px;\n	border-top-left-radius: 30px;\n} */\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	border-radius:30px;\n/* 	border-bottom-right-radius: 30px;\n	border-bottom-left-radius: 30px; */\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n	min-height:140px;\n	background:transparent;\n}\n.counter{\n	padding-bottom:0px!important;\n}\n.ec-counter-items-wrap{\n	padding-top:80px!important;\n	padding-bottom:0px!important;\n}\n.social-icons{\n	padding-top:50px;\n}\n\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-top-container{\n	min-height: 170px;\n} */\n\n.ec-template1 .ec-counter-item-1 .ec-count-subtitle,.ec-template1 .ec-counter-item-2 .ec-count-subtitle,.ec-template1 .ec-counter-item-3 .ec-count-subtitle{\n	font-weight:bold;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	top:18px;\n}\n\n.contactus{\n	padding-top:60px!important;\n}\n.nav>li{\n	margin:0 22px;\n}\n.nav > li > a {\n    font-weight: 400;\n}\n .network .box-text h4{\n	display:none; \n	 text-transform:capitalize;\n}\n.contactus .col{\n	padding: 0 15px 0px;\n}\nh2{\n	letter-spacing:5px;\n	font-weight:400;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-27 07:41:36','2022-04-27 07:41:36','',32,'https://demoweblinks.in/ping/?p=582',0,'revision','',0),(583,1,'2022-04-27 07:42:20','2022-04-27 07:42:20','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n.network{\\n\\tbackground:#f5f5f5;\\n\\tpadding-top: 60px!important;\\n}\\n.team {\\n\\t box-shadow: 10px 15px #d1d1d157;\\n\\t    padding-top: 30px;\\n    padding-bottom: 30px;\\nbackground:#f8f8fa;\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n\\tborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n/* .service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n} */\\n.service-section{\\n\\tbackground:rgb(233 229 229);\\n\\tpadding-top: 60px!important;\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n.service1 h4{\\n\\tcolor:#fb0201!important;\\n}\\n.service2 h4{\\n\\tcolor:#fb0201!important;\\n}\\n.service3 h4{\\n\\tcolor:#fb0201!important;\\n}\\n.box-text.text-center .service1{\\n\\theight:250px;\\n}\\n.box-text.text-center .service2{\\n\\theight:180px;\\n}\\n.box-text.text-center .service3{\\n\\theight:140px;\\n}\\n.block{\\n\\tborder-radius:50px;\\n} \\n.aboutus{\\n\\tpadding-top: 18px!important;\\n  \\n} \\n.header-main .nav > li > a:hover{\\n\\tcolor:#446084;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\\n\\tfont-size:25px;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\\n\\tfont-size:20px;\\n}\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\n\\tborder-top-right-radius: 30px;\\n\\tborder-top-left-radius: 30px;\\n} */\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tborder-radius:30px;\\n/* \\tborder-bottom-right-radius: 30px;\\n\\tborder-bottom-left-radius: 30px; */\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\tmin-height:140px;\\n\\tbackground:transparent;\\n}\\n.counter{\\n\\tpadding-bottom:0px!important;\\n}\\n.ec-counter-items-wrap{\\n\\tpadding-top:80px!important;\\n\\tpadding-bottom:0px!important;\\n}\\n.social-icons{\\n\\tpadding-top:50px;\\n}\\n\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-top-container{\\n\\tmin-height: 170px;\\n} */\\n\\n.ec-template1 .ec-counter-item-1 .ec-count-subtitle,.ec-template1 .ec-counter-item-2 .ec-count-subtitle,.ec-template1 .ec-counter-item-3 .ec-count-subtitle{\\n\\tfont-weight:bold;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\ttop:18px;\\n}\\n\\n.contactus{\\n\\tpadding-top:60px!important;\\n}\\n.nav>li{\\n\\tmargin:0 22px;\\n}\\n.nav > li > a {\\n    font-weight: 400;\\n}\\n .network .box-text h4{\\n\\tfont-size: .9em;\\n\\t text-transform:capitalize;\\n\\t font-weight:bolder;\\n}\\n.contactus .col{\\n\\tpadding: 0 15px 0px;\\n}\\nh2{\\n\\tletter-spacing:5px;\\n\\tfont-weight:400;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-27 07:42:20\"\n    }\n}','','','trash','closed','closed','','f9100098-3e24-46ab-8e6c-66a4f3ad8daf','','','2022-04-27 07:42:20','2022-04-27 07:42:20','',0,'https://demoweblinks.in/ping/2022/04/27/f9100098-3e24-46ab-8e6c-66a4f3ad8daf/',0,'customize_changeset','',0),(584,1,'2022-04-27 07:42:20','2022-04-27 07:42:20','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n.network{\n	background:#f5f5f5;\n	padding-top: 60px!important;\n}\n.team {\n	 box-shadow: 10px 15px #d1d1d157;\n	    padding-top: 30px;\n    padding-bottom: 30px;\nbackground:#f8f8fa;\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n	border-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n/* .service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n} */\n.service-section{\n	background:rgb(233 229 229);\n	padding-top: 60px!important;\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.service1 h4{\n	color:#fb0201!important;\n}\n.service2 h4{\n	color:#fb0201!important;\n}\n.service3 h4{\n	color:#fb0201!important;\n}\n.box-text.text-center .service1{\n	height:250px;\n}\n.box-text.text-center .service2{\n	height:180px;\n}\n.box-text.text-center .service3{\n	height:140px;\n}\n.block{\n	border-radius:50px;\n} \n.aboutus{\n	padding-top: 18px!important;\n  \n} \n.header-main .nav > li > a:hover{\n	color:#446084;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\n	font-size:25px;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\n	font-size:20px;\n}\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n\n	border-top-right-radius: 30px;\n	border-top-left-radius: 30px;\n} */\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	border-radius:30px;\n/* 	border-bottom-right-radius: 30px;\n	border-bottom-left-radius: 30px; */\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n	min-height:140px;\n	background:transparent;\n}\n.counter{\n	padding-bottom:0px!important;\n}\n.ec-counter-items-wrap{\n	padding-top:80px!important;\n	padding-bottom:0px!important;\n}\n.social-icons{\n	padding-top:50px;\n}\n\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-top-container{\n	min-height: 170px;\n} */\n\n.ec-template1 .ec-counter-item-1 .ec-count-subtitle,.ec-template1 .ec-counter-item-2 .ec-count-subtitle,.ec-template1 .ec-counter-item-3 .ec-count-subtitle{\n	font-weight:bold;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	top:18px;\n}\n\n.contactus{\n	padding-top:60px!important;\n}\n.nav>li{\n	margin:0 22px;\n}\n.nav > li > a {\n    font-weight: 400;\n}\n .network .box-text h4{\n	font-size: .9em;\n	 text-transform:capitalize;\n	 font-weight:bolder;\n}\n.contactus .col{\n	padding: 0 15px 0px;\n}\nh2{\n	letter-spacing:5px;\n	font-weight:400;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-27 07:42:20','2022-04-27 07:42:20','',32,'https://demoweblinks.in/ping/?p=584',0,'revision','',0),(585,1,'2022-04-27 07:42:57','2022-04-27 07:42:57','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n.network{\\n\\tbackground:#f5f5f5;\\n\\tpadding-top: 60px!important;\\n}\\n.team {\\n\\t box-shadow: 10px 15px #d1d1d157;\\n\\t    padding-top: 30px;\\n    padding-bottom: 30px;\\nbackground:#f8f8fa;\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n\\tborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n/* .service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n} */\\n.service-section{\\n\\tbackground:rgb(233 229 229);\\n\\tpadding-top: 60px!important;\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n.service1 h4{\\n\\tcolor:#fb0201!important;\\n}\\n.service2 h4{\\n\\tcolor:#fb0201!important;\\n}\\n.service3 h4{\\n\\tcolor:#fb0201!important;\\n}\\n.box-text.text-center .service1{\\n\\theight:250px;\\n}\\n.box-text.text-center .service2{\\n\\theight:180px;\\n}\\n.box-text.text-center .service3{\\n\\theight:140px;\\n}\\n.block{\\n\\tborder-radius:50px;\\n} \\n.aboutus{\\n\\tpadding-top: 18px!important;\\n  \\n} \\n.header-main .nav > li > a:hover{\\n\\tcolor:#446084;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\\n\\tfont-size:25px;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\\n\\tfont-size:20px;\\n}\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\n\\tborder-top-right-radius: 30px;\\n\\tborder-top-left-radius: 30px;\\n} */\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tborder-radius:30px;\\n/* \\tborder-bottom-right-radius: 30px;\\n\\tborder-bottom-left-radius: 30px; */\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\tmin-height:140px;\\n\\tbackground:transparent;\\n}\\n.counter{\\n\\tpadding-bottom:0px!important;\\n}\\n.ec-counter-items-wrap{\\n\\tpadding-top:80px!important;\\n\\tpadding-bottom:0px!important;\\n}\\n.social-icons{\\n\\tpadding-top:50px;\\n}\\n\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-top-container{\\n\\tmin-height: 170px;\\n} */\\n\\n.ec-template1 .ec-counter-item-1 .ec-count-subtitle,.ec-template1 .ec-counter-item-2 .ec-count-subtitle,.ec-template1 .ec-counter-item-3 .ec-count-subtitle{\\n\\tfont-weight:bold;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\ttop:18px;\\n}\\n\\n.contactus{\\n\\tpadding-top:60px!important;\\n}\\n.nav>li{\\n\\tmargin:0 22px;\\n}\\n.nav > li > a {\\n    font-weight: 400;\\n}\\n .network .box-text h4{\\n\\tfont-size: .9em;\\n\\t text-transform:capitalize;\\n\\t font-weight:bolder;\\n\\t color:black;\\n}\\n.contactus .col{\\n\\tpadding: 0 15px 0px;\\n}\\nh2{\\n\\tletter-spacing:5px;\\n\\tfont-weight:400;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-27 07:42:57\"\n    }\n}','','','trash','closed','closed','','0e79fb8a-3822-4f51-b1eb-c43fc4902c0a','','','2022-04-27 07:42:57','2022-04-27 07:42:57','',0,'https://demoweblinks.in/ping/2022/04/27/0e79fb8a-3822-4f51-b1eb-c43fc4902c0a/',0,'customize_changeset','',0),(586,1,'2022-04-27 07:42:57','2022-04-27 07:42:57','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n.network{\n	background:#f5f5f5;\n	padding-top: 60px!important;\n}\n.team {\n	 box-shadow: 10px 15px #d1d1d157;\n	    padding-top: 30px;\n    padding-bottom: 30px;\nbackground:#f8f8fa;\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n	border-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n/* .service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n} */\n.service-section{\n	background:rgb(233 229 229);\n	padding-top: 60px!important;\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.service1 h4{\n	color:#fb0201!important;\n}\n.service2 h4{\n	color:#fb0201!important;\n}\n.service3 h4{\n	color:#fb0201!important;\n}\n.box-text.text-center .service1{\n	height:250px;\n}\n.box-text.text-center .service2{\n	height:180px;\n}\n.box-text.text-center .service3{\n	height:140px;\n}\n.block{\n	border-radius:50px;\n} \n.aboutus{\n	padding-top: 18px!important;\n  \n} \n.header-main .nav > li > a:hover{\n	color:#446084;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\n	font-size:25px;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\n	font-size:20px;\n}\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n\n	border-top-right-radius: 30px;\n	border-top-left-radius: 30px;\n} */\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	border-radius:30px;\n/* 	border-bottom-right-radius: 30px;\n	border-bottom-left-radius: 30px; */\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n	min-height:140px;\n	background:transparent;\n}\n.counter{\n	padding-bottom:0px!important;\n}\n.ec-counter-items-wrap{\n	padding-top:80px!important;\n	padding-bottom:0px!important;\n}\n.social-icons{\n	padding-top:50px;\n}\n\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-top-container{\n	min-height: 170px;\n} */\n\n.ec-template1 .ec-counter-item-1 .ec-count-subtitle,.ec-template1 .ec-counter-item-2 .ec-count-subtitle,.ec-template1 .ec-counter-item-3 .ec-count-subtitle{\n	font-weight:bold;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	top:18px;\n}\n\n.contactus{\n	padding-top:60px!important;\n}\n.nav>li{\n	margin:0 22px;\n}\n.nav > li > a {\n    font-weight: 400;\n}\n .network .box-text h4{\n	font-size: .9em;\n	 text-transform:capitalize;\n	 font-weight:bolder;\n	 color:black;\n}\n.contactus .col{\n	padding: 0 15px 0px;\n}\nh2{\n	letter-spacing:5px;\n	font-weight:400;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-27 07:42:57','2022-04-27 07:42:57','',32,'https://demoweblinks.in/ping/?p=586',0,'revision','',0),(587,1,'2022-04-27 07:43:27','2022-04-27 07:43:27','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n.network{\\n\\tbackground:#f5f5f5;\\n\\tpadding-top: 60px!important;\\n}\\n.team {\\n\\t box-shadow: 10px 15px #d1d1d157;\\n\\t    padding-top: 30px;\\n    padding-bottom: 30px;\\nbackground:#f8f8fa;\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n\\tborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n/* .service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n} */\\n.service-section{\\n\\tbackground:rgb(233 229 229);\\n\\tpadding-top: 60px!important;\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n.service1 h4{\\n\\tcolor:#fb0201!important;\\n}\\n.service2 h4{\\n\\tcolor:#fb0201!important;\\n}\\n.service3 h4{\\n\\tcolor:#fb0201!important;\\n}\\n.box-text.text-center .service1{\\n\\theight:250px;\\n}\\n.box-text.text-center .service2{\\n\\theight:180px;\\n}\\n.box-text.text-center .service3{\\n\\theight:140px;\\n}\\n.block{\\n\\tborder-radius:50px;\\n} \\n.aboutus{\\n\\tpadding-top: 18px!important;\\n  \\n} \\n.header-main .nav > li > a:hover{\\n\\tcolor:#446084;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\\n\\tfont-size:25px;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\\n\\tfont-size:20px;\\n}\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\n\\tborder-top-right-radius: 30px;\\n\\tborder-top-left-radius: 30px;\\n} */\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tborder-radius:30px;\\n/* \\tborder-bottom-right-radius: 30px;\\n\\tborder-bottom-left-radius: 30px; */\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\tmin-height:140px;\\n\\tbackground:transparent;\\n}\\n.counter{\\n\\tpadding-bottom:0px!important;\\n}\\n.ec-counter-items-wrap{\\n\\tpadding-top:80px!important;\\n\\tpadding-bottom:0px!important;\\n}\\n.social-icons{\\n\\tpadding-top:50px;\\n}\\n\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-top-container{\\n\\tmin-height: 170px;\\n} */\\n\\n.ec-template1 .ec-counter-item-1 .ec-count-subtitle,.ec-template1 .ec-counter-item-2 .ec-count-subtitle,.ec-template1 .ec-counter-item-3 .ec-count-subtitle{\\n\\tfont-weight:bold;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\ttop:18px;\\n}\\n\\n.contactus{\\n\\tpadding-top:60px!important;\\n}\\n.nav>li{\\n\\tmargin:0 22px;\\n}\\n.nav > li > a {\\n    font-weight: 400;\\n}\\n .network .box-text h4{\\n\\t display:none;\\n\\tfont-size: .9em;\\n\\t text-transform:capitalize;\\n\\t font-weight:bolder;\\n\\t color:black;\\n}\\n.contactus .col{\\n\\tpadding: 0 15px 0px;\\n}\\nh2{\\n\\tletter-spacing:5px;\\n\\tfont-weight:400;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-27 07:43:27\"\n    }\n}','','','trash','closed','closed','','864f761c-150c-4f46-ba9c-c8af6fb3edc5','','','2022-04-27 07:43:27','2022-04-27 07:43:27','',0,'https://demoweblinks.in/ping/2022/04/27/864f761c-150c-4f46-ba9c-c8af6fb3edc5/',0,'customize_changeset','',0),(588,1,'2022-04-27 07:43:27','2022-04-27 07:43:27','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n.network{\n	background:#f5f5f5;\n	padding-top: 60px!important;\n}\n.team {\n	 box-shadow: 10px 15px #d1d1d157;\n	    padding-top: 30px;\n    padding-bottom: 30px;\nbackground:#f8f8fa;\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n	border-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n/* .service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n} */\n.service-section{\n	background:rgb(233 229 229);\n	padding-top: 60px!important;\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.service1 h4{\n	color:#fb0201!important;\n}\n.service2 h4{\n	color:#fb0201!important;\n}\n.service3 h4{\n	color:#fb0201!important;\n}\n.box-text.text-center .service1{\n	height:250px;\n}\n.box-text.text-center .service2{\n	height:180px;\n}\n.box-text.text-center .service3{\n	height:140px;\n}\n.block{\n	border-radius:50px;\n} \n.aboutus{\n	padding-top: 18px!important;\n  \n} \n.header-main .nav > li > a:hover{\n	color:#446084;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\n	font-size:25px;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\n	font-size:20px;\n}\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n\n	border-top-right-radius: 30px;\n	border-top-left-radius: 30px;\n} */\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	border-radius:30px;\n/* 	border-bottom-right-radius: 30px;\n	border-bottom-left-radius: 30px; */\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n	min-height:140px;\n	background:transparent;\n}\n.counter{\n	padding-bottom:0px!important;\n}\n.ec-counter-items-wrap{\n	padding-top:80px!important;\n	padding-bottom:0px!important;\n}\n.social-icons{\n	padding-top:50px;\n}\n\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-top-container{\n	min-height: 170px;\n} */\n\n.ec-template1 .ec-counter-item-1 .ec-count-subtitle,.ec-template1 .ec-counter-item-2 .ec-count-subtitle,.ec-template1 .ec-counter-item-3 .ec-count-subtitle{\n	font-weight:bold;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	top:18px;\n}\n\n.contactus{\n	padding-top:60px!important;\n}\n.nav>li{\n	margin:0 22px;\n}\n.nav > li > a {\n    font-weight: 400;\n}\n .network .box-text h4{\n	 display:none;\n	font-size: .9em;\n	 text-transform:capitalize;\n	 font-weight:bolder;\n	 color:black;\n}\n.contactus .col{\n	padding: 0 15px 0px;\n}\nh2{\n	letter-spacing:5px;\n	font-weight:400;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-27 07:43:27','2022-04-27 07:43:27','',32,'https://demoweblinks.in/ping/?p=588',0,'revision','',0),(589,1,'2022-04-27 07:45:27','2022-04-27 07:45:27','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h2>Ping Network</h2>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(233, 229, 228)\" padding=\"0px\" class=\"counter\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section bg_color=\"rgb(255, 255, 255)\" class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"506\" image_width=\"37\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"505\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"504\" image_width=\"53\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"502\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"501\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"500\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"490\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"489\" image_width=\"47\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"488\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Youtube Channels</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\" hover=\"fade\"]\n\n[team_member img=\"312\" name=\"The Stupendous Wave\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[scroll_to title=\"contactus\" bullet=\"false\"]\n\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Contact us</h2>\n[/ux_text]\n[gap]\n\n\n[/col]\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-27 07:45:27','2022-04-27 07:45:27','',6,'https://demoweblinks.in/ping/?p=589',0,'revision','',0),(590,1,'2022-04-27 07:46:17','2022-04-27 07:46:17','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h2>Ping Network</h2>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(233, 229, 228)\" padding=\"0px\" class=\"counter\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section bg_color=\"rgb(255, 255, 255)\" class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"506\" image_width=\"37\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"505\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"504\" image_width=\"53\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"502\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"501\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"500\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"490\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"489\" image_width=\"47\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"488\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Youtube Channels</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\" hover=\"focus\"]\n\n[team_member img=\"312\" name=\"The Stupendous Wave\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[scroll_to title=\"contactus\" bullet=\"false\"]\n\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Contact us</h2>\n[/ux_text]\n[gap]\n\n\n[/col]\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-27 07:46:17','2022-04-27 07:46:17','',6,'https://demoweblinks.in/ping/?p=590',0,'revision','',0),(591,1,'2022-04-27 07:47:32','2022-04-27 07:47:32','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h2>Ping Network</h2>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(233, 229, 228)\" padding=\"0px\" class=\"counter\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section bg_color=\"rgb(255, 255, 255)\" class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"506\" image_width=\"37\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"505\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"504\" image_width=\"53\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"502\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"501\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"500\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"490\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"489\" image_width=\"47\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"488\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Youtube Channels</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"312\" name=\"The Stupendous Wave\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[scroll_to title=\"contactus\" bullet=\"false\"]\n\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Contact us</h2>\n[/ux_text]\n[gap]\n\n\n[/col]\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-27 07:47:32','2022-04-27 07:47:32','',6,'https://demoweblinks.in/ping/?p=591',0,'revision','',0),(592,1,'2022-04-27 07:51:45','2022-04-27 07:51:45','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h2>Ping Network</h2>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(233, 229, 228)\" padding=\"0px\" class=\"counter\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section bg_color=\"rgb(255, 255, 255)\" class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"506\" image_width=\"37\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"505\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"504\" image_width=\"53\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"502\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"501\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"500\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"490\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"489\" image_width=\"47\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"488\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row depth_hover=\"1\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Youtube Channels</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"312\" name=\"The Stupendous Wave\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[scroll_to title=\"contactus\" bullet=\"false\"]\n\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Contact us</h2>\n[/ux_text]\n[gap]\n\n\n[/col]\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-27 07:51:45','2022-04-27 07:51:45','',6,'https://demoweblinks.in/ping/?p=592',0,'revision','',0),(593,1,'2022-04-27 07:52:27','2022-04-27 07:52:27','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h2>Ping Network</h2>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(233, 229, 228)\" padding=\"0px\" class=\"counter\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section bg_color=\"rgb(255, 255, 255)\" class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"506\" image_width=\"37\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"505\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"504\" image_width=\"53\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"502\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"501\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"500\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"490\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"489\" image_width=\"47\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"488\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row depth_hover=\"3\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Youtube Channels</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"312\" name=\"The Stupendous Wave\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[scroll_to title=\"contactus\" bullet=\"false\"]\n\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Contact us</h2>\n[/ux_text]\n[gap]\n\n\n[/col]\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-27 07:52:27','2022-04-27 07:52:27','',6,'https://demoweblinks.in/ping/?p=593',0,'revision','',0),(594,1,'2022-04-27 07:56:36','2022-04-27 07:56:36','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h2>Ping Network</h2>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(233, 229, 228)\" padding=\"0px\" class=\"counter\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section bg_color=\"rgb(255, 255, 255)\" class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"506\" image_width=\"37\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"505\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"504\" image_width=\"53\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"502\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"501\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"500\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"490\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"489\" image_width=\"47\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"488\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Youtube Channels</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"3\"]\n\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"312\" name=\"The Stupendous Wave\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[scroll_to title=\"contactus\" bullet=\"false\"]\n\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Contact us</h2>\n[/ux_text]\n[gap]\n\n\n[/col]\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-27 07:56:36','2022-04-27 07:56:36','',6,'https://demoweblinks.in/ping/?p=594',0,'revision','',0),(595,1,'2022-04-27 07:57:04','2022-04-27 07:57:04','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h2>Ping Network</h2>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(233, 229, 228)\" padding=\"0px\" class=\"counter\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section bg_color=\"rgb(255, 255, 255)\" class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"506\" image_width=\"37\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"505\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"504\" image_width=\"53\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"502\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"501\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"500\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"490\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"489\" image_width=\"47\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"488\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Youtube Channels</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"3\"]\n\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"312\" name=\"The Stupendous Wave\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row depth_hover=\"3\"]\n\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[scroll_to title=\"contactus\" bullet=\"false\"]\n\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Contact us</h2>\n[/ux_text]\n[gap]\n\n\n[/col]\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-27 07:57:04','2022-04-27 07:57:04','',6,'https://demoweblinks.in/ping/?p=595',0,'revision','',0),(596,1,'2022-04-27 08:36:54','2022-04-27 08:36:54','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h2>Ping Network</h2>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(233, 229, 228)\" padding=\"0px\" class=\"counter\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section bg_color=\"rgb(255, 255, 255)\" class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"506\" image_width=\"37\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"505\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"504\" image_width=\"53\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"502\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"501\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"500\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"490\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"489\" image_width=\"47\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"488\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\" padding=\"10px 0px 0px 0px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Youtube Channels</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"3\"]\n\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"312\" name=\"The Stupendous Wave\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row depth_hover=\"3\"]\n\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[scroll_to title=\"contactus\" bullet=\"false\"]\n\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Contact us</h2>\n[/ux_text]\n[gap]\n\n\n[/col]\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-27 08:36:54','2022-04-27 08:36:54','',6,'https://demoweblinks.in/ping/?p=596',0,'revision','',0),(597,1,'2022-04-27 08:37:32','2022-04-27 08:37:32','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h2>Ping Network</h2>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(233, 229, 228)\" padding=\"0px\" class=\"counter\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section bg_color=\"rgb(255, 255, 255)\" class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"506\" image_width=\"37\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"505\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"504\" image_width=\"53\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"502\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"501\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"500\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"490\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"489\" image_width=\"47\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"488\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Youtube Channels</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"3\"]\n\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"312\" name=\"The Stupendous Wave\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\" text_padding=\"10px 10px 0px 10px\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row depth_hover=\"3\"]\n\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[scroll_to title=\"contactus\" bullet=\"false\"]\n\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Contact us</h2>\n[/ux_text]\n[gap]\n\n\n[/col]\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-27 08:37:32','2022-04-27 08:37:32','',6,'https://demoweblinks.in/ping/?p=597',0,'revision','',0),(598,1,'2022-04-27 08:38:17','2022-04-27 08:38:17','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h2>Ping Network</h2>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(233, 229, 228)\" padding=\"0px\" class=\"counter\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section bg_color=\"rgb(255, 255, 255)\" class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"506\" image_width=\"37\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"505\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"504\" image_width=\"53\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"502\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"501\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"500\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"490\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"489\" image_width=\"47\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"488\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Youtube Channels</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"3\"]\n\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"312\" name=\"The Stupendous Wave\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row depth_hover=\"3\"]\n\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[scroll_to title=\"contactus\" bullet=\"false\"]\n\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Contact us</h2>\n[/ux_text]\n[gap]\n\n\n[/col]\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-27 08:38:17','2022-04-27 08:38:17','',6,'https://demoweblinks.in/ping/?p=598',0,'revision','',0),(599,1,'2022-04-27 08:38:58','2022-04-27 08:38:58','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n.network{\\n\\tbackground:#f5f5f5;\\n\\tpadding-top: 60px!important;\\n}\\n.team {\\n\\t box-shadow: 10px 15px #d1d1d157;\\n\\t    padding-top: 30px;\\n    padding-bottom: 30px;\\nbackground:#f8f8fa;\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n\\tborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n/* .service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n} */\\n.service-section{\\n\\tbackground:rgb(233 229 229);\\n\\tpadding-top: 60px!important;\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n.service1 h4{\\n\\tcolor:#fb0201!important;\\n}\\n.service2 h4{\\n\\tcolor:#fb0201!important;\\n}\\n.service3 h4{\\n\\tcolor:#fb0201!important;\\n}\\n.box-text.text-center .service1{\\n\\theight:250px;\\n}\\n.box-text.text-center .service2{\\n\\theight:180px;\\n}\\n.box-text.text-center .service3{\\n\\theight:140px;\\n}\\n.block{\\n\\tborder-radius:50px;\\n} \\n.aboutus{\\n\\tpadding-top: 18px!important;\\n  \\n} \\n.header-main .nav > li > a:hover{\\n\\tcolor:#446084;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\\n\\tfont-size:25px;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\\n\\tfont-size:20px;\\n}\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\n\\tborder-top-right-radius: 30px;\\n\\tborder-top-left-radius: 30px;\\n} */\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tborder-radius:30px;\\n/* \\tborder-bottom-right-radius: 30px;\\n\\tborder-bottom-left-radius: 30px; */\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\tmin-height:140px;\\n\\tbackground:transparent;\\n}\\n.counter{\\n\\tpadding-bottom:0px!important;\\n}\\n.ec-counter-items-wrap{\\n\\tpadding-top:80px!important;\\n\\tpadding-bottom:0px!important;\\n}\\n.social-icons{\\n\\tpadding-top:50px;\\n}\\n\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-top-container{\\n\\tmin-height: 170px;\\n} */\\n\\n.ec-template1 .ec-counter-item-1 .ec-count-subtitle,.ec-template1 .ec-counter-item-2 .ec-count-subtitle,.ec-template1 .ec-counter-item-3 .ec-count-subtitle{\\n\\tfont-weight:bold;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\ttop:18px;\\n}\\n\\n.contactus{\\n\\tpadding-top:60px!important;\\n}\\n.nav>li{\\n\\tmargin:0 22px;\\n}\\n.nav > li > a {\\n    font-weight: 400;\\n}\\n .network .box-text h4{\\n\\t display:none;\\n\\tfont-size: .9em;\\n\\t text-transform:capitalize;\\n\\t font-weight:bolder;\\n\\t color:black;\\n}\\n.contactus .col{\\n\\tpadding: 0 15px 0px;\\n}\\nh2{\\n\\tletter-spacing:5px;\\n\\tfont-weight:400;\\n}\\n.network .box{\\n\\tpadding-top:10px;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-27 08:38:58\"\n    }\n}','','','trash','closed','closed','','42002b33-f1c4-47d2-bd84-fbb5cb5a2202','','','2022-04-27 08:38:58','2022-04-27 08:38:58','',0,'https://demoweblinks.in/ping/2022/04/27/42002b33-f1c4-47d2-bd84-fbb5cb5a2202/',0,'customize_changeset','',0),(600,1,'2022-04-27 08:38:58','2022-04-27 08:38:58','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n.network{\n	background:#f5f5f5;\n	padding-top: 60px!important;\n}\n.team {\n	 box-shadow: 10px 15px #d1d1d157;\n	    padding-top: 30px;\n    padding-bottom: 30px;\nbackground:#f8f8fa;\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n	border-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n/* .service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n} */\n.service-section{\n	background:rgb(233 229 229);\n	padding-top: 60px!important;\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.service1 h4{\n	color:#fb0201!important;\n}\n.service2 h4{\n	color:#fb0201!important;\n}\n.service3 h4{\n	color:#fb0201!important;\n}\n.box-text.text-center .service1{\n	height:250px;\n}\n.box-text.text-center .service2{\n	height:180px;\n}\n.box-text.text-center .service3{\n	height:140px;\n}\n.block{\n	border-radius:50px;\n} \n.aboutus{\n	padding-top: 18px!important;\n  \n} \n.header-main .nav > li > a:hover{\n	color:#446084;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\n	font-size:25px;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\n	font-size:20px;\n}\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n\n	border-top-right-radius: 30px;\n	border-top-left-radius: 30px;\n} */\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	border-radius:30px;\n/* 	border-bottom-right-radius: 30px;\n	border-bottom-left-radius: 30px; */\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n	min-height:140px;\n	background:transparent;\n}\n.counter{\n	padding-bottom:0px!important;\n}\n.ec-counter-items-wrap{\n	padding-top:80px!important;\n	padding-bottom:0px!important;\n}\n.social-icons{\n	padding-top:50px;\n}\n\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-top-container{\n	min-height: 170px;\n} */\n\n.ec-template1 .ec-counter-item-1 .ec-count-subtitle,.ec-template1 .ec-counter-item-2 .ec-count-subtitle,.ec-template1 .ec-counter-item-3 .ec-count-subtitle{\n	font-weight:bold;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	top:18px;\n}\n\n.contactus{\n	padding-top:60px!important;\n}\n.nav>li{\n	margin:0 22px;\n}\n.nav > li > a {\n    font-weight: 400;\n}\n .network .box-text h4{\n	 display:none;\n	font-size: .9em;\n	 text-transform:capitalize;\n	 font-weight:bolder;\n	 color:black;\n}\n.contactus .col{\n	padding: 0 15px 0px;\n}\nh2{\n	letter-spacing:5px;\n	font-weight:400;\n}\n.network .box{\n	padding-top:10px;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-27 08:38:58','2022-04-27 08:38:58','',32,'https://demoweblinks.in/ping/?p=600',0,'revision','',0),(601,1,'2022-04-27 08:40:01','2022-04-27 08:40:01','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n.network{\\n\\tbackground:#f5f5f5;\\n\\tpadding-top: 60px!important;\\n}\\n.team {\\n\\t box-shadow: 10px 15px #d1d1d157;\\n\\t    padding-top: 30px;\\n    padding-bottom: 30px;\\nbackground:#f8f8fa;\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n\\tborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n/* .service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n} */\\n.service-section{\\n\\tbackground:rgb(233 229 229);\\n\\tpadding-top: 60px!important;\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n.service1 h4{\\n\\tcolor:#fb0201!important;\\n}\\n.service2 h4{\\n\\tcolor:#fb0201!important;\\n}\\n.service3 h4{\\n\\tcolor:#fb0201!important;\\n}\\n.box-text.text-center .service1{\\n\\theight:250px;\\n}\\n.box-text.text-center .service2{\\n\\theight:180px;\\n}\\n.box-text.text-center .service3{\\n\\theight:140px;\\n}\\n.block{\\n\\tborder-radius:50px;\\n} \\n.aboutus{\\n\\tpadding-top: 18px!important;\\n  \\n} \\n.header-main .nav > li > a:hover{\\n\\tcolor:#446084;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\\n\\tfont-size:25px;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\\n\\tfont-size:20px;\\n}\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\n\\tborder-top-right-radius: 30px;\\n\\tborder-top-left-radius: 30px;\\n} */\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tborder-radius:30px;\\n/* \\tborder-bottom-right-radius: 30px;\\n\\tborder-bottom-left-radius: 30px; */\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\tmin-height:140px;\\n\\tbackground:transparent;\\n}\\n.counter{\\n\\tpadding-bottom:0px!important;\\n}\\n.ec-counter-items-wrap{\\n\\tpadding-top:80px!important;\\n\\tpadding-bottom:0px!important;\\n}\\n.social-icons{\\n\\tpadding-top:50px;\\n}\\n\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-top-container{\\n\\tmin-height: 170px;\\n} */\\n\\n.ec-template1 .ec-counter-item-1 .ec-count-subtitle,.ec-template1 .ec-counter-item-2 .ec-count-subtitle,.ec-template1 .ec-counter-item-3 .ec-count-subtitle{\\n\\tfont-weight:bold;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\ttop:18px;\\n}\\n\\n.contactus{\\n\\tpadding-top:60px!important;\\n}\\n.nav>li{\\n\\tmargin:0 22px;\\n}\\n.nav > li > a {\\n    font-weight: 400;\\n}\\n .network .box-text h4{\\n\\t display:none;\\n\\tfont-size: .9em;\\n\\t text-transform:capitalize;\\n\\t font-weight:bolder;\\n\\t color:black;\\n}\\n.contactus .col{\\n\\tpadding: 0 15px 0px;\\n}\\nh2{\\n\\tletter-spacing:5px;\\n\\tfont-weight:400;\\n}\\n.network .box{\\n\\tpadding-top:25px;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-04-27 08:39:58\"\n    }\n}','','','trash','closed','closed','','0c9ca592-a659-44ad-a8eb-0aa6a4cb9958','','','2022-04-27 08:40:01','2022-04-27 08:40:01','',0,'https://demoweblinks.in/ping/?p=601',0,'customize_changeset','',0),(602,1,'2022-04-27 08:40:01','2022-04-27 08:40:01','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n.network{\n	background:#f5f5f5;\n	padding-top: 60px!important;\n}\n.team {\n	 box-shadow: 10px 15px #d1d1d157;\n	    padding-top: 30px;\n    padding-bottom: 30px;\nbackground:#f8f8fa;\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n	border-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n/* .service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n} */\n.service-section{\n	background:rgb(233 229 229);\n	padding-top: 60px!important;\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.service1 h4{\n	color:#fb0201!important;\n}\n.service2 h4{\n	color:#fb0201!important;\n}\n.service3 h4{\n	color:#fb0201!important;\n}\n.box-text.text-center .service1{\n	height:250px;\n}\n.box-text.text-center .service2{\n	height:180px;\n}\n.box-text.text-center .service3{\n	height:140px;\n}\n.block{\n	border-radius:50px;\n} \n.aboutus{\n	padding-top: 18px!important;\n  \n} \n.header-main .nav > li > a:hover{\n	color:#446084;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\n	font-size:25px;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\n	font-size:20px;\n}\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n\n	border-top-right-radius: 30px;\n	border-top-left-radius: 30px;\n} */\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	border-radius:30px;\n/* 	border-bottom-right-radius: 30px;\n	border-bottom-left-radius: 30px; */\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n	min-height:140px;\n	background:transparent;\n}\n.counter{\n	padding-bottom:0px!important;\n}\n.ec-counter-items-wrap{\n	padding-top:80px!important;\n	padding-bottom:0px!important;\n}\n.social-icons{\n	padding-top:50px;\n}\n\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-top-container{\n	min-height: 170px;\n} */\n\n.ec-template1 .ec-counter-item-1 .ec-count-subtitle,.ec-template1 .ec-counter-item-2 .ec-count-subtitle,.ec-template1 .ec-counter-item-3 .ec-count-subtitle{\n	font-weight:bold;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	top:18px;\n}\n\n.contactus{\n	padding-top:60px!important;\n}\n.nav>li{\n	margin:0 22px;\n}\n.nav > li > a {\n    font-weight: 400;\n}\n .network .box-text h4{\n	 display:none;\n	font-size: .9em;\n	 text-transform:capitalize;\n	 font-weight:bolder;\n	 color:black;\n}\n.contactus .col{\n	padding: 0 15px 0px;\n}\nh2{\n	letter-spacing:5px;\n	font-weight:400;\n}\n.network .box{\n	padding-top:25px;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-04-27 08:40:01','2022-04-27 08:40:01','',32,'https://demoweblinks.in/ping/?p=602',0,'revision','',0),(603,1,'2022-04-27 08:42:06','2022-04-27 08:42:06','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\" loading=\"true\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h2>Ping Network</h2>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(233, 229, 228)\" padding=\"0px\" class=\"counter\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section bg_color=\"rgb(255, 255, 255)\" class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"506\" image_width=\"37\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"505\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"504\" image_width=\"53\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"502\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"501\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"500\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"490\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"489\" image_width=\"47\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"488\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Youtube Channels</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"3\"]\n\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"312\" name=\"The Stupendous Wave\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row depth_hover=\"3\"]\n\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[scroll_to title=\"contactus\" bullet=\"false\"]\n\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Contact us</h2>\n[/ux_text]\n[gap]\n\n\n[/col]\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-27 08:42:06','2022-04-27 08:42:06','',6,'https://demoweblinks.in/ping/?p=603',0,'revision','',0),(604,1,'2022-04-27 08:42:48','2022-04-27 08:42:48','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h2>Ping Network</h2>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(233, 229, 228)\" padding=\"0px\" class=\"counter\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section bg_color=\"rgb(255, 255, 255)\" class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"506\" image_width=\"37\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"505\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"504\" image_width=\"53\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"502\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"501\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"500\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"490\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"489\" image_width=\"47\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"488\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Youtube Channels</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"3\"]\n\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"312\" name=\"The Stupendous Wave\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row depth_hover=\"3\"]\n\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[scroll_to title=\"contactus\" bullet=\"false\"]\n\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Contact us</h2>\n[/ux_text]\n[gap]\n\n\n[/col]\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-04-27 08:42:48','2022-04-27 08:42:48','',6,'https://demoweblinks.in/ping/?p=604',0,'revision','',0),(606,1,'2022-05-05 08:37:57','2022-05-05 08:37:57','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h2>Ping Network</h2>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\" visibility=\"hide-for-medium\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\" visibility=\"show-for-small\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(233, 229, 228)\" padding=\"0px\" class=\"counter\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section bg_color=\"rgb(255, 255, 255)\" class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"506\" image_width=\"37\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"505\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"504\" image_width=\"53\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"502\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"501\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"500\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"490\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"489\" image_width=\"47\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"488\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Youtube Channels</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"3\"]\n\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"312\" name=\"The Stupendous Wave\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row depth_hover=\"3\"]\n\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[scroll_to title=\"contactus\" bullet=\"false\"]\n\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Contact us</h2>\n[/ux_text]\n[gap]\n\n\n[/col]\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-05-05 08:37:57','2022-05-05 08:37:57','',6,'http://demoweblinks.in/ping/?p=606',0,'revision','',0),(607,1,'2022-05-05 08:39:33','2022-05-05 08:39:33','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h2>Ping Network</h2>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\" visibility=\"hide-for-medium\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\" visibility=\"show-for-medium hide-for-small\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\" visibility=\"show-for-small\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(233, 229, 228)\" padding=\"0px\" class=\"counter\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section bg_color=\"rgb(255, 255, 255)\" class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"506\" image_width=\"37\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"505\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"504\" image_width=\"53\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"502\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"501\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"500\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"490\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"489\" image_width=\"47\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"488\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Youtube Channels</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"3\"]\n\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"312\" name=\"The Stupendous Wave\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row depth_hover=\"3\"]\n\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[scroll_to title=\"contactus\" bullet=\"false\"]\n\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Contact us</h2>\n[/ux_text]\n[gap]\n\n\n[/col]\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-05-05 08:39:33','2022-05-05 08:39:33','',6,'http://demoweblinks.in/ping/?p=607',0,'revision','',0),(608,1,'2022-05-05 08:40:23','2022-05-05 08:40:23','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h2>Ping Network</h2>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\" visibility=\"hide-for-small\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\" visibility=\"show-for-medium hide-for-small\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\" visibility=\"show-for-small\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(233, 229, 228)\" padding=\"0px\" class=\"counter\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section bg_color=\"rgb(255, 255, 255)\" class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"506\" image_width=\"37\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"505\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"504\" image_width=\"53\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"502\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"501\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"500\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"490\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"489\" image_width=\"47\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"488\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Youtube Channels</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"3\"]\n\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"312\" name=\"The Stupendous Wave\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row depth_hover=\"3\"]\n\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[scroll_to title=\"contactus\" bullet=\"false\"]\n\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Contact us</h2>\n[/ux_text]\n[gap]\n\n\n[/col]\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-05-05 08:40:23','2022-05-05 08:40:23','',6,'http://demoweblinks.in/ping/?p=608',0,'revision','',0),(609,1,'2022-05-05 08:40:34','2022-05-05 08:40:34','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h2>Ping Network</h2>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\" visibility=\"hide-for-small\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\" visibility=\"show-for-medium hide-for-small\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\" visibility=\"show-for-medium\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(233, 229, 228)\" padding=\"0px\" class=\"counter\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section bg_color=\"rgb(255, 255, 255)\" class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"506\" image_width=\"37\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"505\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"504\" image_width=\"53\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"502\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"501\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"500\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"490\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"489\" image_width=\"47\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"488\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Youtube Channels</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"3\"]\n\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"312\" name=\"The Stupendous Wave\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row depth_hover=\"3\"]\n\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[scroll_to title=\"contactus\" bullet=\"false\"]\n\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Contact us</h2>\n[/ux_text]\n[gap]\n\n\n[/col]\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-05-05 08:40:34','2022-05-05 08:40:34','',6,'http://demoweblinks.in/ping/?p=609',0,'revision','',0),(610,1,'2022-05-05 08:41:08','2022-05-05 08:41:08','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h2>Ping Network</h2>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\" visibility=\"hide-for-small\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\" visibility=\"show-for-medium\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(233, 229, 228)\" padding=\"0px\" class=\"counter\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section bg_color=\"rgb(255, 255, 255)\" class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"506\" image_width=\"37\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"505\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"504\" image_width=\"53\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"502\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"501\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"500\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"490\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"489\" image_width=\"47\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"488\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Youtube Channels</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"3\"]\n\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"312\" name=\"The Stupendous Wave\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row depth_hover=\"3\"]\n\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Channel Name &amp; Logos</h2>\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[scroll_to title=\"contactus\" bullet=\"false\"]\n\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Contact us</h2>\n[/ux_text]\n[gap]\n\n\n[/col]\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-05-05 08:41:08','2022-05-05 08:41:08','',6,'http://demoweblinks.in/ping/?p=610',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (611,1,'2022-05-05 08:48:10','2022-05-05 08:48:10','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h2>Ping Network</h2>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\" visibility=\"hide-for-small\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\" visibility=\"show-for-medium\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(233, 229, 228)\" padding=\"0px\" class=\"counter\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section bg_color=\"rgb(255, 255, 255)\" class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"506\" image_width=\"37\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"505\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"504\" image_width=\"53\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"502\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"501\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"500\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"490\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"489\" image_width=\"47\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"488\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Youtube Channels</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"3\"]\n\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"312\" name=\"The Stupendous Wave\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row depth_hover=\"3\"]\n\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Youtube Channel</h2>\n\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[scroll_to title=\"contactus\" bullet=\"false\"]\n\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Contact us</h2>\n[/ux_text]\n[gap]\n\n\n[/col]\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-05-05 08:48:10','2022-05-05 08:48:10','',6,'http://demoweblinks.in/ping/?p=611',0,'revision','',0),(612,1,'2022-05-05 08:49:13','2022-05-05 08:49:13','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h2>Ping Network</h2>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\" visibility=\"hide-for-small\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\" visibility=\"show-for-medium\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(233, 229, 228)\" padding=\"0px\" class=\"counter\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section bg_color=\"rgb(255, 255, 255)\" class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"506\" image_width=\"37\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"505\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"504\" image_width=\"53\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"502\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"501\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"500\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"490\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"489\" image_width=\"47\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"488\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hide-for-small\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Youtube Channels</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"3\"]\n\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"312\" name=\"The Stupendous Wave\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row depth_hover=\"3\"]\n\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section video_visibility=\"visible\" class=\"network\" visibility=\"show-for-medium\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Youtube Channel</h2>\n\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[scroll_to title=\"contactus\" bullet=\"false\"]\n\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Contact us</h2>\n[/ux_text]\n[gap]\n\n\n[/col]\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-05-05 08:49:13','2022-05-05 08:49:13','',6,'http://demoweblinks.in/ping/?p=612',0,'revision','',0),(613,1,'2022-05-05 08:58:50','2022-05-05 08:58:50','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h2>Ping Network</h2>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\" visibility=\"hide-for-medium\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\" visibility=\"show-for-medium hide-for-small\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\" visibility=\"show-for-small\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(233, 229, 228)\" padding=\"0px\" class=\"counter\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section bg_color=\"rgb(255, 255, 255)\" class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"506\" image_width=\"37\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"505\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"504\" image_width=\"53\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"502\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"501\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"500\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"490\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"489\" image_width=\"47\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"488\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hide-for-small\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Youtube Channels</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"3\"]\n\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"312\" name=\"The Stupendous Wave\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row depth_hover=\"3\"]\n\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section video_visibility=\"visible\" class=\"network\" visibility=\"show-for-medium\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Youtube Channel</h2>\n\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[scroll_to title=\"contactus\" bullet=\"false\"]\n\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Contact us</h2>\n[/ux_text]\n[gap]\n\n\n[/col]\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[ux_slider]\n\n[ux_banner height=\"500px\" bg_overlay=\"rgba(0, 0, 0, 0.2)\"]\n\n[text_box width=\"40\" width__sm=\"60\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" bg=\"rgba(0, 0, 0, 0.86)\" depth=\"3\"]\n\n<h2 class=\"uppercase\"><strong>Main Headline</strong></h2>\n<h3>Smaller Headline</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Primary\"]\n\n[button text=\"Secondary\" color=\"white\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_image_box img=\"506\" image_width=\"37\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n[ux_image_box img=\"506\" image_width=\"37\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-05-05 08:58:50','2022-05-05 08:58:50','',6,'http://demoweblinks.in/ping/?p=613',0,'revision','',0),(614,1,'2022-05-05 09:03:01','2022-05-05 09:03:01','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h2>Ping Network</h2>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\" visibility=\"hide-for-medium\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\" visibility=\"show-for-medium hide-for-small\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\" visibility=\"show-for-small\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(233, 229, 228)\" padding=\"0px\" class=\"counter\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section bg_color=\"rgb(255, 255, 255)\" class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"506\" image_width=\"37\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"505\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"504\" image_width=\"53\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"502\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"501\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"500\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"490\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"489\" image_width=\"47\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"488\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hide-for-small\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Youtube Channels</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"3\"]\n\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"312\" name=\"The Stupendous Wave\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row depth_hover=\"3\"]\n\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section video_visibility=\"visible\" class=\"network\" visibility=\"show-for-medium\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Youtube Channel</h2>\n\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[scroll_to title=\"contactus\" bullet=\"false\"]\n\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Contact us</h2>\n[/ux_text]\n[gap]\n\n\n[/col]\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[ux_slider]\n\n[ux_image id=\"506\"]\n\n[ux_image id=\"505\"]\n\n\n[/ux_slider]\n[ux_image_box img=\"506\" image_width=\"37\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n[ux_image_box img=\"506\" image_width=\"37\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-05-05 09:03:01','2022-05-05 09:03:01','',6,'http://demoweblinks.in/ping/?p=614',0,'revision','',0),(615,1,'2022-05-05 09:04:12','2022-05-05 09:04:12','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h2>Ping Network</h2>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\" visibility=\"hide-for-medium\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\" visibility=\"show-for-medium hide-for-small\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\" visibility=\"show-for-small\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(233, 229, 228)\" padding=\"0px\" class=\"counter\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section bg_color=\"rgb(255, 255, 255)\" class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"506\" image_width=\"37\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"505\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"504\" image_width=\"53\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"502\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"501\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"500\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"490\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"489\" image_width=\"47\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"488\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hide-for-small\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Youtube Channels</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"3\"]\n\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"312\" name=\"The Stupendous Wave\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row depth_hover=\"3\"]\n\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section video_visibility=\"visible\" class=\"network\" visibility=\"show-for-medium\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Youtube Channel</h2>\n\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[scroll_to title=\"contactus\" bullet=\"false\"]\n\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Contact us</h2>\n[/ux_text]\n[gap]\n\n\n[/col]\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[ux_slider style=\"container\" nav_size=\"normal\"]\n\n[ux_image id=\"506\"]\n\n[ux_image id=\"505\"]\n\n\n[/ux_slider]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-05-05 09:04:12','2022-05-05 09:04:12','',6,'http://demoweblinks.in/ping/?p=615',0,'revision','',0),(616,1,'2022-05-05 09:07:08','2022-05-05 09:07:08','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h2>Ping Network</h2>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\" visibility=\"hide-for-medium\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\" visibility=\"show-for-medium hide-for-small\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\" visibility=\"show-for-small\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(233, 229, 228)\" padding=\"0px\" class=\"counter\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section bg_color=\"rgb(255, 255, 255)\" class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"506\" image_width=\"37\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"505\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"504\" image_width=\"53\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"502\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"501\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"500\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"490\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"489\" image_width=\"47\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"488\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hide-for-small\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Youtube Channels</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"3\"]\n\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"312\" name=\"The Stupendous Wave\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row depth_hover=\"3\"]\n\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section video_visibility=\"visible\" class=\"network\" visibility=\"show-for-medium\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Youtube Channel</h2>\n\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[scroll_to title=\"contactus\" bullet=\"false\"]\n\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Contact us</h2>\n[/ux_text]\n[gap]\n\n\n[/col]\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-05-05 09:07:08','2022-05-05 09:07:08','',6,'http://demoweblinks.in/ping/?p=616',0,'revision','',0),(617,1,'2022-05-05 09:13:15','2022-05-05 09:13:15','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h2>Ping Network</h2>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\" visibility=\"hide-for-medium\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\" visibility=\"show-for-medium hide-for-small\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\" visibility=\"show-for-small\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(233, 229, 228)\" padding=\"0px\" class=\"counter\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section bg_color=\"rgb(255, 255, 255)\" class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"506\" image_width=\"37\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"505\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"504\" image_width=\"53\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"502\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"501\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"500\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"490\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"489\" image_width=\"47\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"488\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hide-for-small\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Youtube Channels</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"3\"]\n\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"312\" name=\"The Stupendous Wave\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row depth_hover=\"3\"]\n\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section video_visibility=\"visible\" class=\"network\" visibility=\"show-for-medium\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Youtube Channel</h2>\n\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_style=\"simple\" nav_color=\"dark\" timer=\"4000\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[scroll_to title=\"contactus\" bullet=\"false\"]\n\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Contact us</h2>\n[/ux_text]\n[gap]\n\n\n[/col]\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-05-05 09:13:15','2022-05-05 09:13:15','',6,'http://demoweblinks.in/ping/?p=617',0,'revision','',0),(618,1,'2022-05-05 09:14:13','2022-05-05 09:14:13','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h2>Ping Network</h2>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\" visibility=\"hide-for-medium\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\" visibility=\"show-for-medium hide-for-small\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\" visibility=\"show-for-small\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(233, 229, 228)\" padding=\"0px\" class=\"counter\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section bg_color=\"rgb(255, 255, 255)\" class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"506\" image_width=\"37\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"505\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"504\" image_width=\"53\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"502\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"501\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"500\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"490\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"489\" image_width=\"47\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"488\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hide-for-small\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Youtube Channels</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"3\"]\n\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"312\" name=\"The Stupendous Wave\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row depth_hover=\"3\"]\n\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section video_visibility=\"visible\" class=\"network\" visibility=\"show-for-medium\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Youtube Channel</h2>\n\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_style=\"simple\" nav_color=\"dark\" timer=\"3000\" pause_hover=\"false\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[scroll_to title=\"contactus\" bullet=\"false\"]\n\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Contact us</h2>\n[/ux_text]\n[gap]\n\n\n[/col]\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-05-05 09:14:13','2022-05-05 09:14:13','',6,'http://demoweblinks.in/ping/?p=618',0,'revision','',0),(619,1,'2022-05-05 09:19:50','2022-05-05 09:19:50','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h2>Ping Network</h2>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\" visibility=\"hide-for-medium\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\" visibility=\"show-for-medium hide-for-small\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\" visibility=\"show-for-small\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(233, 229, 228)\" padding=\"0px\" class=\"counter\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section bg_color=\"rgb(255, 255, 255)\" class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"506\" image_width=\"37\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"505\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"504\" image_width=\"53\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"502\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"501\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"500\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"490\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"489\" image_width=\"47\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"488\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hide-for-small\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Youtube Channels</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"3\"]\n\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"312\" name=\"The Stupendous Wave\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row depth_hover=\"3\"]\n\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section video_visibility=\"visible\" class=\"network\" visibility=\"show-for-medium\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Youtube Channel</h2>\n\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_style=\"simple\" nav_color=\"dark\" timer=\"3000\" pause_hover=\"false\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[scroll_to title=\"contactus\" bullet=\"false\"]\n\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Contact us</h2>\n[/ux_text]\n[gap]\n\n\n[/col]\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-05-05 09:19:50','2022-05-05 09:19:50','',6,'http://demoweblinks.in/ping/?p=619',0,'revision','',0),(620,1,'2022-05-05 09:23:03','2022-05-05 09:23:03','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h2>Ping Network</h2>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\" visibility=\"hide-for-medium\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"40px\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\" visibility=\"show-for-medium hide-for-small\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\" visibility=\"show-for-small\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(233, 229, 228)\" padding=\"0px\" class=\"counter\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section bg_color=\"rgb(255, 255, 255)\" class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"506\" image_width=\"37\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"505\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"504\" image_width=\"53\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"502\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"501\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"500\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"490\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"489\" image_width=\"47\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"488\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hide-for-small\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Youtube Channels</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"3\"]\n\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"312\" name=\"The Stupendous Wave\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row depth_hover=\"3\"]\n\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section video_visibility=\"visible\" class=\"network\" visibility=\"show-for-medium\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Youtube Channel</h2>\n\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_style=\"simple\" nav_color=\"dark\" timer=\"3000\" pause_hover=\"false\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[scroll_to title=\"contactus\" bullet=\"false\"]\n\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Contact us</h2>\n[/ux_text]\n[gap]\n\n\n[/col]\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-05-05 09:23:03','2022-05-05 09:23:03','',6,'http://demoweblinks.in/ping/?p=620',0,'revision','',0),(621,1,'2022-05-05 09:25:16','2022-05-05 09:25:16','<!-- wp:flatsome/uxbuilder -->\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\"]\n\n[section label=\"Media Right Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"0px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"5\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\" max_width=\"520px\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\" class=\"section1-text\"]\n\n<h2>Ping Network</h2>\n<p>We - PING Network have been part of YouTube’s journey since its launch in India a decade ago. A certified enterprise partner,  we have built a creator first business. Surfacing new creators, helping existing ones and creating new monetisation opportunities are at the core of what we do. </p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"7\" span__sm=\"12\"]\n\n[ux_image id=\"259\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\" visibility=\"hide-for-medium\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\" visibility=\"show-for-medium hide-for-small\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_slider type=\"fade\" bullets=\"false\" auto_slide=\"false\" pause_hover=\"false\" visibility=\"show-for-small\"]\n\n[section label=\"Media Left Large\" bg_color=\"rgb(247, 247, 247)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" class=\"aboutus\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" padding=\"10% 10% 10% 10%\" align=\"center\"]\n\n[ux_text line_height=\"1.7\" text_align=\"left\" text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</p>\n[/ux_text]\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" expand=\"0\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner height=\"637px\" bg=\"4061\" bg_size=\"original\" bg_pos=\"62% 60%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"7232\" bg_pos=\"62% 68%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y=\"50\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(233, 229, 228)\" padding=\"0px\" class=\"counter\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[everest_counter id=\"288\"]</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" visibility=\"hidden\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 1\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 2\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"7733\" pos=\"center\" title=\"Company Feature 3\" margin=\"0px 0px 0px 0px\" icon_border=\"2\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row style=\"large\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"26\" height=\"100%\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" margin=\"00px 0px 0px 0px\" align=\"left\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<h2 >About us</h2>\n<p>We have worked with 1000’s creators across geographies and verticals with an emphasis on the infotainment space. </p>\n<p><b style=\"color:red;\"> If you are a food creator, a finance guru, an interior designer, a gamer, or even an independent news brand, we provide the full suite of support to help you grow and monetize your YouTube channel.</b></p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 15px\" radius=\"99\" class=\"home-button\" visibility=\"hidden\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" visibility=\"hidden\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"7451\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\" visibility=\"hidden\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" depth=\"1\" slider_nav_style=\"circle\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\" visibility=\"hidden\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]\n[section bg_color=\"rgb(255, 255, 255)\" class=\"service-section\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Services</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"4\"]\n\n[col span=\"4\" span__sm=\"12\" divider=\"0\" bg_radius=\"10\"]\n\n[ux_image_box img=\"506\" image_width=\"37\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Channel Development</h4>\n<p></br></p>\n<p>We have YouTube Certified experts who will help the creators with the effective optimization of videos on your channel. This will help the channel get discovered on YouTube plus divert the audience to more content on the creator’s channel to maximize audience engagement.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"505\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Content Strategy</h4>\n<p></br></p>\n<p>We also work with creators to ensure they receive regular feedback on content and also insights to help build better content. This will be part of the support of CMS management. To implement the partnership, we will set up monthly calls and meetings so creators can engage with the team that is working to grow the channel and also identify monetization opportunities for creators.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"504\" image_width=\"53\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service1\"]\n\n<h4>Video Production</h4>\n<p></br></p>\n<p>We have a complete suite of production equipment including fully furnished kitchen sets, lighting, back kitchen crew, professional-grade camera equipment and more available in our Mumbai studio.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"502\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Brand Collaboration</h4>\n<p></br></p>\n<p>A content partner of choice, we have worked with some of India’s largest brands – in the food & other space. We actively represent the creator’s work and channel to brands for collaborations and monetization opportunities.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"501\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Access to Creators Dashboard</h4>\n<p></br></p>\n<p>This provides the partners with insight on Campaign Opportunities, Channel Performance Analytics, and reviews earnings history. Also, it enables the partner to submit content & channel through the dashboard</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"500\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service2\"]\n\n<h4>Training from YouTube experts & learning material</h4>\n<p></br></p>\n<p>Internal workshops from YouTube experts. Regular updates and information on the channel improvement</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"490\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0, 0, 0)\" class=\"service3\"]\n\n<h4>Transparent Cooperation</h4>\n<p></br></p>\n<p>Clear contract Terms & Conditions. No penalties & No Lock-in period for unlinking the channel.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"489\" image_width=\"47\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Partner Support</h4>\n<p></br></p>\n<p>We will resolve strikes, claims & restricted monetization status or any channel-level issues.</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_radius=\"10\"]\n\n[ux_image_box img=\"488\" image_width=\"45\" class=\"team\"]\n\n[ux_text text_color=\"rgb(0,0,0)\" class=\"service3\"]\n\n<h4>Provide Content ID services</h4>\n<p></br></p>\n<p>Content ID helps copyright holders identify and manage illegal use of their original content by other channels</p>\n[/ux_text]\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section class=\"network\" visibility=\"hide-for-small\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Youtube Channels</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row depth_hover=\"3\"]\n\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"312\" name=\"The Stupendous Wave\" link=\"https://www.youtube.com/c/TheStupendousWave\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>The Stupendous Wave</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"313\" link=\"https://www.youtube.com/c/GharchaSwaad\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Gharcha Swaad</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"315\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>KabitasLifeStyle</b> </p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"317\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>KabitasKitchen Quick Recipes</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row depth_hover=\"3\"]\n\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"319\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>MFDC-Mobile Film Distribution Center</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"320\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Machinery Magazine</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"322\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Hindi Khabar</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_radius=\"20\"]\n\n[team_member img=\"324\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" image_height=\"100%\" image_width=\"50\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Wrestle India</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"326\" link=\"https://www.youtube.com/c/tamilgaming\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p> <b>Tamil Gaming</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"6\" padding=\"10px 10px 10px 10px\" bg_radius=\"20\"]\n\n[team_member img=\"327\" link=\"https://www.youtube.com/c/Bejod\" image_height=\"100%\" image_width=\"35\" image_radius=\"100\"]\n\n[ux_text text_color=\"rgb(0,0,0)\"]\n\n<p><b>Bejod</b></p>\n[/ux_text]\n\n[/team_member]\n\n[/col]\n\n[/row]\n[row visibility=\"hidden\"]\n\n[col span__sm=\"12\" divider=\"0\" align=\"center\"]\n\n[button text=\"Know More\" letter_case=\"lowercase\" color=\"alert\" padding=\"0px 50px 0px 15px\" radius=\"23\" expand=\"0\" class=\"home-button know-more\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(244, 244, 244)\" video_visibility=\"visible\" class=\"team-section\" visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Our Team</h2>\n[/ux_text]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"74\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"75\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"76\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"77\" name=\"Ola Nordmann\" title=\"Customer Support\" icon_style=\"fill\" linkedin=\"#\" image_height=\"100%\" class=\"team\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]\n[section video_visibility=\"visible\" class=\"network\" visibility=\"show-for-medium\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Youtube Channel</h2>\n\n[/ux_text]\n\n[/col]\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_style=\"simple\" nav_color=\"dark\" timer=\"3000\" pause_hover=\"false\" class=\"logo-slider\"]\n\n[logo img=\"312\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/TheStupendousWave\" target=\"_blank\"]\n\n[logo img=\"313\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/GharchaSwaad\" target=\"_blank\"]\n\n[logo img=\"315\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/KabitasLifeStyle\" target=\"_blank\"]\n\n[logo img=\"317\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCycmCbzmIJUqHY7YccLfotg\" target=\"_blank\"]\n\n[logo img=\"319\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCSkJZcU5TP_tXDVrruAZy_Q\" target=\"_blank\"]\n\n[logo img=\"320\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCM5VX4496qpsHcewO7TBssw\" target=\"_blank\"]\n\n[logo img=\"322\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCXNL7b0VFx2cBauU52ItUTQ/\" target=\"_blank\"]\n\n[logo img=\"324\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/channel/UCf5d--SPrJ7tN89fgiCGfXA\" target=\"_blank\"]\n\n[logo img=\"326\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/tamilgaming\" target=\"_blank\"]\n\n[logo img=\"327\" image_size=\"thumbnail\" height=\"100px\" link=\"https://www.youtube.com/c/Bejod\" target=\"_blank\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[scroll_to title=\"contactus\" bullet=\"false\"]\n\n[section class=\"contactus\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(0,0,0)\"]\n\n<h2>Contact us</h2>\n[/ux_text]\n[gap]\n\n\n[/col]\n[col span__sm=\"12\"]\n\n[contact-form-7 id=\"59\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Home','','inherit','closed','closed','','6-revision-v1','','','2022-05-05 09:25:16','2022-05-05 09:25:16','',6,'http://demoweblinks.in/ping/?p=621',0,'revision','',0),(622,1,'2022-05-05 09:27:59','2022-05-05 09:27:59','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n.network{\\n\\tbackground:#f5f5f5;\\n\\tpadding-top: 60px!important;\\n}\\n.team {\\n\\t box-shadow: 10px 15px #d1d1d157;\\n\\t    padding-top: 30px;\\n    padding-bottom: 30px;\\nbackground:#f8f8fa;\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n\\tborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n/* .service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n} */\\n.service-section{\\n\\tbackground:rgb(233 229 229);\\n\\tpadding-top: 60px!important;\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n.service1 h4{\\n\\tcolor:#fb0201!important;\\n}\\n.service2 h4{\\n\\tcolor:#fb0201!important;\\n}\\n.service3 h4{\\n\\tcolor:#fb0201!important;\\n}\\n.box-text.text-center .service1{\\n\\theight:250px;\\n}\\n.box-text.text-center .service2{\\n\\theight:180px;\\n}\\n.box-text.text-center .service3{\\n\\theight:140px;\\n}\\n.block{\\n\\tborder-radius:50px;\\n} \\n.aboutus{\\n\\tpadding-top: 68px!important;\\n  \\n} \\n.header-main .nav > li > a:hover{\\n\\tcolor:#446084;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\\n\\tfont-size:25px;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\\n\\tfont-size:20px;\\n}\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\n\\tborder-top-right-radius: 30px;\\n\\tborder-top-left-radius: 30px;\\n} */\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tborder-radius:30px;\\n/* \\tborder-bottom-right-radius: 30px;\\n\\tborder-bottom-left-radius: 30px; */\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\tmin-height:140px;\\n\\tbackground:transparent;\\n}\\n.counter{\\n\\tpadding-bottom:0px!important;\\n}\\n.ec-counter-items-wrap{\\n\\tpadding-top:80px!important;\\n\\tpadding-bottom:0px!important;\\n}\\n.social-icons{\\n\\tpadding-top:50px;\\n}\\n\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-top-container{\\n\\tmin-height: 170px;\\n} */\\n\\n.ec-template1 .ec-counter-item-1 .ec-count-subtitle,.ec-template1 .ec-counter-item-2 .ec-count-subtitle,.ec-template1 .ec-counter-item-3 .ec-count-subtitle{\\n\\tfont-weight:bold;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\ttop:18px;\\n}\\n\\n.contactus{\\n\\tpadding-top:60px!important;\\n}\\n.nav>li{\\n\\tmargin:0 22px;\\n}\\n.nav > li > a {\\n    font-weight: 400;\\n}\\n .network .box-text h4{\\n\\t display:none;\\n\\tfont-size: .9em;\\n\\t text-transform:capitalize;\\n\\t font-weight:bolder;\\n\\t color:black;\\n}\\n.contactus .col{\\n\\tpadding: 0 15px 0px;\\n}\\nh2{\\n\\tletter-spacing:5px;\\n\\tfont-weight:400;\\n}\\n.network .box{\\n\\tpadding-top:25px;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-05-05 09:27:59\"\n    }\n}','','','trash','closed','closed','','405f20f5-7a46-401e-a4c1-422acbeec08a','','','2022-05-05 09:27:59','2022-05-05 09:27:59','',0,'http://demoweblinks.in/ping/2022/05/05/405f20f5-7a46-401e-a4c1-422acbeec08a/',0,'customize_changeset','',0),(623,1,'2022-05-05 09:27:59','2022-05-05 09:27:59','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n.network{\n	background:#f5f5f5;\n	padding-top: 60px!important;\n}\n.team {\n	 box-shadow: 10px 15px #d1d1d157;\n	    padding-top: 30px;\n    padding-bottom: 30px;\nbackground:#f8f8fa;\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n	border-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n/* .service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n} */\n.service-section{\n	background:rgb(233 229 229);\n	padding-top: 60px!important;\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.service1 h4{\n	color:#fb0201!important;\n}\n.service2 h4{\n	color:#fb0201!important;\n}\n.service3 h4{\n	color:#fb0201!important;\n}\n.box-text.text-center .service1{\n	height:250px;\n}\n.box-text.text-center .service2{\n	height:180px;\n}\n.box-text.text-center .service3{\n	height:140px;\n}\n.block{\n	border-radius:50px;\n} \n.aboutus{\n	padding-top: 68px!important;\n  \n} \n.header-main .nav > li > a:hover{\n	color:#446084;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\n	font-size:25px;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\n	font-size:20px;\n}\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n\n	border-top-right-radius: 30px;\n	border-top-left-radius: 30px;\n} */\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	border-radius:30px;\n/* 	border-bottom-right-radius: 30px;\n	border-bottom-left-radius: 30px; */\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n	min-height:140px;\n	background:transparent;\n}\n.counter{\n	padding-bottom:0px!important;\n}\n.ec-counter-items-wrap{\n	padding-top:80px!important;\n	padding-bottom:0px!important;\n}\n.social-icons{\n	padding-top:50px;\n}\n\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-top-container{\n	min-height: 170px;\n} */\n\n.ec-template1 .ec-counter-item-1 .ec-count-subtitle,.ec-template1 .ec-counter-item-2 .ec-count-subtitle,.ec-template1 .ec-counter-item-3 .ec-count-subtitle{\n	font-weight:bold;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	top:18px;\n}\n\n.contactus{\n	padding-top:60px!important;\n}\n.nav>li{\n	margin:0 22px;\n}\n.nav > li > a {\n    font-weight: 400;\n}\n .network .box-text h4{\n	 display:none;\n	font-size: .9em;\n	 text-transform:capitalize;\n	 font-weight:bolder;\n	 color:black;\n}\n.contactus .col{\n	padding: 0 15px 0px;\n}\nh2{\n	letter-spacing:5px;\n	font-weight:400;\n}\n.network .box{\n	padding-top:25px;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-05-05 09:27:59','2022-05-05 09:27:59','',32,'http://demoweblinks.in/ping/?p=623',0,'revision','',0),(624,1,'2022-05-05 09:30:02','2022-05-05 09:30:02','{\n    \"custom_css[flatsome]\": {\n        \"value\": \"a.button.secondary.lowercase.home-button{\\n\\t\\tfloat:left!important;\\n}\\n.network{\\n\\tbackground:#f5f5f5;\\n\\tpadding-top: 60px!important;\\n}\\n.team {\\n\\t box-shadow: 10px 15px #d1d1d157;\\n\\t    padding-top: 30px;\\n    padding-bottom: 30px;\\nbackground:#f8f8fa;\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n\\tborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.team .box-image{\\n\\t border-top-right-radius: 25px;\\n\\t border-top-left-radius: 25px;\\n}\\n\\n.team .box-text.text-center{\\n\\nborder-bottom-right-radius: 25px;\\nborder-bottom-left-radius: 25px;\\n}\\n.absolute-footer.dark{\\n\\tdisplay:none;\\n}\\n\\n.section1-text{\\n\\tmargin-top:-100px;\\n}\\n\\n\\n.youtube:after{\\n\\t\\tcontent: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\\n    background-size: 38px;\\n    position: absolute !important;\\n    right: 10px !important;\\n    margin-right: 0 !important;\\n    padding: 0;\\n    width: 45px !important;\\n    height: 45px;\\n    top: 7px;\\n    right: 5px !important;\\n    background-repeat: no-repeat;\\n}\\n\\n.secondary{\\n\\t\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n}\\n.button{\\n\\tborder:0px solid transparent!important;\\n\\n}\\n\\n/* .service-section{\\n\\tbackground:linear-gradient(#8196f8, #8ddde3);\\n} */\\n.service-section{\\n\\tbackground:rgb(233 229 229);\\n\\tpadding-top: 60px!important;\\n}\\n.home-button.know-more span{\\n\\tcolor:black;\\n}\\n\\n\\n\\n.newsletter-btn {\\n    position: relative;\\n    top: 14px;\\n    left: 0;\\n    max-width: 122px;\\n    display: inline-grid;\\n}\\n.newsletter-btn input[type=submit] {\\n   \\n    border-radius: 99px !important;\\n    width: 115px;\\n    padding: 0px 50px 0px 15px;\\n    text-align: left;\\n}\\n\\n.newsletter-btn:after {\\n    content: \'\';\\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\\n    background-size: 20px;\\n    position: absolute !important;\\n    top: 9px;\\n    right: 0px;\\n    left: auto;\\n    padding: 10px;\\n    margin-left: 10px;\\n    width: 36px !important;\\n    height: 36px;\\n    line-height: 19px;\\n\\tbackground-repeat:no-repeat;\\n}\\n@media only screen and (max-width: 549px)   {\\n\\t\\n\\t.section1-text{\\n\\tmargin-top:10px;\\n}\\n}\\n\\n@media only screen and (max-width: 1024px)   {\\n\\t\\n\\t.logo-slider .flickity-slider{\\n\\tleft: 0px!important;\\n}\\n}\\n\\nh1,h2{\\n\\tfont-size:2.7em;\\n}\\n\\n.nav>li>a{\\n\\tfont-size:1em;\\n}\\n\\n.button.instagram:not(.is-outline), .button.instagram:hover{\\n\\tcolor: #fd1d1d !important;\\n}\\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\\n    color: #0e76a8 !important;\\n}\\n.button.twitter:not(.is-outline), .button.twitter:hover {\\n    color: #00acee !important;\\n}\\n\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\\n\\tbackground: linear-gradient(#8196f8, #8ddde3);\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tbackground:#fc0000;\\n}\\n\\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\\n\\theight: 3em;\\n    border-radius: 50px;\\n}\\n.service1 h4{\\n\\tcolor:#fb0201!important;\\n}\\n.service2 h4{\\n\\tcolor:#fb0201!important;\\n}\\n.service3 h4{\\n\\tcolor:#fb0201!important;\\n}\\n.box-text.text-center .service1{\\n\\theight:250px;\\n}\\n.box-text.text-center .service2{\\n\\theight:180px;\\n}\\n.box-text.text-center .service3{\\n\\theight:140px;\\n}\\n.block{\\n\\tborder-radius:50px;\\n} \\n.aboutus{\\n\\tpadding-top: 18px!important;\\n  \\n} \\n.header-main .nav > li > a:hover{\\n\\tcolor:#446084;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\\n\\tfont-size:25px;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\\n\\tfont-size:20px;\\n}\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\n\\tborder-top-right-radius: 30px;\\n\\tborder-top-left-radius: 30px;\\n} */\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\tborder-radius:30px;\\n/* \\tborder-bottom-right-radius: 30px;\\n\\tborder-bottom-left-radius: 30px; */\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\\n\\tmin-height:140px;\\n\\tbackground:transparent;\\n}\\n.counter{\\n\\tpadding-bottom:0px!important;\\n}\\n.ec-counter-items-wrap{\\n\\tpadding-top:80px!important;\\n\\tpadding-bottom:0px!important;\\n}\\n.social-icons{\\n\\tpadding-top:50px;\\n}\\n\\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-top-container{\\n\\tmin-height: 170px;\\n} */\\n\\n.ec-template1 .ec-counter-item-1 .ec-count-subtitle,.ec-template1 .ec-counter-item-2 .ec-count-subtitle,.ec-template1 .ec-counter-item-3 .ec-count-subtitle{\\n\\tfont-weight:bold;\\n}\\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\\n\\ttop:18px;\\n}\\n\\n.contactus{\\n\\tpadding-top:60px!important;\\n}\\n.nav>li{\\n\\tmargin:0 22px;\\n}\\n.nav > li > a {\\n    font-weight: 400;\\n}\\n .network .box-text h4{\\n\\t display:none;\\n\\tfont-size: .9em;\\n\\t text-transform:capitalize;\\n\\t font-weight:bolder;\\n\\t color:black;\\n}\\n.contactus .col{\\n\\tpadding: 0 15px 0px;\\n}\\nh2{\\n\\tletter-spacing:5px;\\n\\tfont-weight:400;\\n}\\n.network .box{\\n\\tpadding-top:25px;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-05-05 09:30:02\"\n    }\n}','','','trash','closed','closed','','891601bd-150b-44a5-9145-88cd527f6243','','','2022-05-05 09:30:02','2022-05-05 09:30:02','',0,'http://demoweblinks.in/ping/2022/05/05/891601bd-150b-44a5-9145-88cd527f6243/',0,'customize_changeset','',0),(625,1,'2022-05-05 09:30:02','2022-05-05 09:30:02','a.button.secondary.lowercase.home-button{\n		float:left!important;\n}\n.network{\n	background:#f5f5f5;\n	padding-top: 60px!important;\n}\n.team {\n	 box-shadow: 10px 15px #d1d1d157;\n	    padding-top: 30px;\n    padding-bottom: 30px;\nbackground:#f8f8fa;\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n	border-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.team .box-image{\n	 border-top-right-radius: 25px;\n	 border-top-left-radius: 25px;\n}\n\n.team .box-text.text-center{\n\nborder-bottom-right-radius: 25px;\nborder-bottom-left-radius: 25px;\n}\n.absolute-footer.dark{\n	display:none;\n}\n\n.section1-text{\n	margin-top:-100px;\n}\n\n\n.youtube:after{\n		content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/01/png-transparent-youtube-logo-youtube-logo-computer-icons-subscribe-angle-rectangle-airplane.png);\n    background-size: 38px;\n    position: absolute !important;\n    right: 10px !important;\n    margin-right: 0 !important;\n    padding: 0;\n    width: 45px !important;\n    height: 45px;\n    top: 7px;\n    right: 5px !important;\n    background-repeat: no-repeat;\n}\n\n.secondary{\n		background:linear-gradient(#8196f8, #8ddde3);\n}\n.button{\n	border:0px solid transparent!important;\n\n}\n\n/* .service-section{\n	background:linear-gradient(#8196f8, #8ddde3);\n} */\n.service-section{\n	background:rgb(233 229 229);\n	padding-top: 60px!important;\n}\n.home-button.know-more span{\n	color:black;\n}\n\n\n\n.newsletter-btn {\n    position: relative;\n    top: 14px;\n    left: 0;\n    max-width: 122px;\n    display: inline-grid;\n}\n.newsletter-btn input[type=submit] {\n   \n    border-radius: 99px !important;\n    width: 115px;\n    padding: 0px 50px 0px 15px;\n    text-align: left;\n}\n\n.newsletter-btn:after {\n    content: \'\';\n    background-image: url(http://demoweblinks.in/ping/wp-content/uploads/2022/02/next-icon-btn-1-1.png);\n    background-size: 20px;\n    position: absolute !important;\n    top: 9px;\n    right: 0px;\n    left: auto;\n    padding: 10px;\n    margin-left: 10px;\n    width: 36px !important;\n    height: 36px;\n    line-height: 19px;\n	background-repeat:no-repeat;\n}\n@media only screen and (max-width: 549px)   {\n	\n	.section1-text{\n	margin-top:10px;\n}\n}\n\n@media only screen and (max-width: 1024px)   {\n	\n	.logo-slider .flickity-slider{\n	left: 0px!important;\n}\n}\n\nh1,h2{\n	font-size:2.7em;\n}\n\n.nav>li>a{\n	font-size:1em;\n}\n\n.button.instagram:not(.is-outline), .button.instagram:hover{\n	color: #fd1d1d !important;\n}\n.button.linkedin:not(.is-outline), .button.linkedin:hover {\n    color: #0e76a8 !important;\n}\n.button.twitter:not(.is-outline), .button.twitter:hover {\n    color: #00acee !important;\n}\n\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-content{\n	background: linear-gradient(#8196f8, #8ddde3);\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	background:#fc0000;\n}\n\ninput[type=email], input[type=date], input[type=search], input[type=number], input[type=text], input[type=tel], input[type=url], input[type=password], textarea, select, .select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection{\n	height: 3em;\n    border-radius: 50px;\n}\n.service1 h4{\n	color:#fb0201!important;\n}\n.service2 h4{\n	color:#fb0201!important;\n}\n.service3 h4{\n	color:#fb0201!important;\n}\n.box-text.text-center .service1{\n	height:250px;\n}\n.box-text.text-center .service2{\n	height:180px;\n}\n.box-text.text-center .service3{\n	height:140px;\n}\n.block{\n	border-radius:50px;\n} \n.aboutus{\n	padding-top: 18px!important;\n  \n} \n.header-main .nav > li > a:hover{\n	color:#446084;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-title{\n	font-size:25px;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-count-subtitle{\n	font-size:20px;\n}\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n\n	border-top-right-radius: 30px;\n	border-top-left-radius: 30px;\n} */\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	border-radius:30px;\n/* 	border-bottom-right-radius: 30px;\n	border-bottom-left-radius: 30px; */\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-bottom-container{\n	min-height:140px;\n	background:transparent;\n}\n.counter{\n	padding-bottom:0px!important;\n}\n.ec-counter-items-wrap{\n	padding-top:80px!important;\n	padding-bottom:0px!important;\n}\n.social-icons{\n	padding-top:50px;\n}\n\n/* .ec-shortcode-outer-wrap.ec-template1 .ec-top-container{\n	min-height: 170px;\n} */\n\n.ec-template1 .ec-counter-item-1 .ec-count-subtitle,.ec-template1 .ec-counter-item-2 .ec-count-subtitle,.ec-template1 .ec-counter-item-3 .ec-count-subtitle{\n	font-weight:bold;\n}\n.ec-shortcode-outer-wrap.ec-template1 .ec-top-container:before{\n	top:18px;\n}\n\n.contactus{\n	padding-top:60px!important;\n}\n.nav>li{\n	margin:0 22px;\n}\n.nav > li > a {\n    font-weight: 400;\n}\n .network .box-text h4{\n	 display:none;\n	font-size: .9em;\n	 text-transform:capitalize;\n	 font-weight:bolder;\n	 color:black;\n}\n.contactus .col{\n	padding: 0 15px 0px;\n}\nh2{\n	letter-spacing:5px;\n	font-weight:400;\n}\n.network .box{\n	padding-top:25px;\n}','flatsome','','inherit','closed','closed','','32-revision-v1','','','2022-05-05 09:30:02','2022-05-05 09:30:02','',32,'http://demoweblinks.in/ping/?p=625',0,'revision','',0),(627,2,'2022-05-19 06:32:26','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2022-05-19 06:32:26','0000-00-00 00:00:00','',0,'http://demoweblinks.in/ping/?p=627',0,'post','',0),(628,2,'2022-05-19 06:53:34','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','closed','','','','','2022-05-19 06:53:34','0000-00-00 00:00:00','',0,'http://demoweblinks.in/ping/?post_type=everest-counter&p=628',0,'everest-counter','',0),(629,2,'2022-05-19 06:54:20','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','closed','','','','','2022-05-19 06:54:20','0000-00-00 00:00:00','',0,'http://demoweblinks.in/ping/?post_type=blocks&p=629',0,'blocks','',0),(630,2,'2022-05-19 06:54:30','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','closed','','','','','2022-05-19 06:54:30','0000-00-00 00:00:00','',0,'http://demoweblinks.in/ping/?post_type=blocks&p=630',0,'blocks','',0),(631,2,'2022-05-19 06:54:39','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','closed','','','','','2022-05-19 06:54:39','0000-00-00 00:00:00','',0,'http://demoweblinks.in/ping/?page_id=631',0,'page','',0),(632,1,'2022-05-19 10:50:26','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2022-05-19 10:50:26','0000-00-00 00:00:00','',0,'http://demoweblinks.in/ping/?p=632',0,'post','',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_sby_feed_locator`
--

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

--
-- Dumping data for table `wp_sby_feed_locator`
--

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

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

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

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

LOCK TABLES `wp_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_term_relationships` VALUES (1,1,0),(7,2,0),(80,3,0),(81,3,0),(82,3,0),(83,3,0);
/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `wp_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,1),(2,2,'wp_theme','',0,1),(3,3,'nav_menu','',0,4);
/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

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

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

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

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

LOCK TABLES `wp_terms` WRITE;
/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'flatsome','flatsome',0),(3,'Home Menu','home-menu',0);
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `wp_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','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'),(17,1,'wp_dashboard_quick_press_last_post_id','632'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:20:\"2409:4073:313:5f6c::\";}'),(19,1,'wp_user-settings','libraryContent=browse'),(20,1,'wp_user-settings-time','1643374780'),(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:7:{i:0;s:20:\"add-post-type-blocks\";i:1;s:27:\"add-post-type-featured_item\";i:2;s:12:\"add-post_tag\";i:3;s:15:\"add-post_format\";i:4;s:20:\"add-block_categories\";i:5;s:26:\"add-featured_item_category\";i:6;s:21:\"add-featured_item_tag\";}'),(23,1,'nav_menu_recently_edited','3'),(24,2,'nickname','ping-user'),(25,2,'first_name',''),(26,2,'last_name',''),(27,2,'description',''),(28,2,'rich_editing','true'),(29,2,'syntax_highlighting','true'),(30,2,'comment_shortcuts','false'),(31,2,'admin_color','fresh'),(32,2,'use_ssl','0'),(33,2,'show_admin_bar_front','true'),(34,2,'locale',''),(35,2,'wp_capabilities','a:1:{s:6:\"editor\";b:1;}'),(36,2,'wp_user_level','7'),(37,2,'dismissed_wp_pointers',''),(38,2,'session_tokens','a:8:{s:64:\"1b4d958eed73fd9ddf61871cbf7ee9206e3d38147e3ca6af31cdb63d31d3cbe1\";a:4:{s:10:\"expiration\";i:1653114745;s:2:\"ip\";s:14:\"49.207.195.146\";s:2:\"ua\";s:121:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36\";s:5:\"login\";i:1652941945;}s:64:\"183f3aed94e496ecdf897d182aeb668d8219ad62e4478090a642806bbcde094c\";a:4:{s:10:\"expiration\";i:1654152437;s:2:\"ip\";s:15:\"175.100.149.127\";s:2:\"ua\";s:121:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36\";s:5:\"login\";i:1652942837;}s:64:\"d3b05d01048dce3248e1e33290b23137be2cb484d5ae0266274b3254d2128d16\";a:4:{s:10:\"expiration\";i:1653116848;s:2:\"ip\";s:14:\"49.207.195.146\";s:2:\"ua\";s:121:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36\";s:5:\"login\";i:1652944048;}s:64:\"c658e3371d2ce93b22476c2748887ebf1113ea8be8b24707f3cbdd30e3f9f0cf\";a:4:{s:10:\"expiration\";i:1653123730;s:2:\"ip\";s:14:\"49.207.195.146\";s:2:\"ua\";s:121:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36\";s:5:\"login\";i:1652950930;}s:64:\"b7fac9b981271fbc95aba66783fb334225fe48018e2037a7072d28df1230eb9d\";a:4:{s:10:\"expiration\";i:1653130700;s:2:\"ip\";s:38:\"2409:4073:313:5f6c:1177:3f18:5357:87b4\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.67 Safari/537.36\";s:5:\"login\";i:1652957900;}s:64:\"43b87a5ef3135d6d570fe56d1bc38b8d4f37d2184c4021566870ca2d0d318823\";a:4:{s:10:\"expiration\";i:1653132769;s:2:\"ip\";s:14:\"49.207.195.146\";s:2:\"ua\";s:121:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36\";s:5:\"login\";i:1652959969;}s:64:\"60d0da7152adfbca1ccafa3bc981ae35a7fec0acf46888eb5bb62d67d8ff604f\";a:4:{s:10:\"expiration\";i:1653132831;s:2:\"ip\";s:14:\"49.207.195.146\";s:2:\"ua\";s:121:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36\";s:5:\"login\";i:1652960031;}s:64:\"3dd9c464afb3647980e5ee14f39774dc3994821ea1ae5d292329cb6aa8235984\";a:4:{s:10:\"expiration\";i:1653139320;s:2:\"ip\";s:38:\"2409:4073:313:5f6c:3825:7ba6:6975:d63b\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.67 Safari/537.36\";s:5:\"login\";i:1652966520;}}'),(39,2,'wp_dashboard_quick_press_last_post_id','627'),(40,2,'community-events-location','a:1:{s:2:\"ip\";s:20:\"2409:4073:313:5f6c::\";}'),(41,2,'meta-box-order_dashboard','a:4:{s:6:\"normal\";s:38:\"dashboard_activity,dashboard_right_now\";s:4:\"side\";s:39:\"dashboard_quick_press,dashboard_primary\";s:7:\"column3\";s:0:\"\";s:7:\"column4\";s:0:\"\";}'),(42,1,'session_tokens','a:2:{s:64:\"7ec89a3bd6dce92885c77b554edfdaa4344ed76a6136e4f72b9254d396e0994e\";a:4:{s:10:\"expiration\";i:1653130316;s:2:\"ip\";s:38:\"2409:4073:313:5f6c:1177:3f18:5357:87b4\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.67 Safari/537.36\";s:5:\"login\";i:1652957516;}s:64:\"d38abeeda85c2260fee096cda8c4b75a5c8d905bf901ee2605f0999d41c8a11c\";a:4:{s:10:\"expiration\";i:1653139079;s:2:\"ip\";s:38:\"2409:4073:313:5f6c:3825:7ba6:6975:d63b\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.67 Safari/537.36\";s:5:\"login\";i:1652966279;}}'),(43,2,'nav_menu_recently_edited','3'),(44,2,'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\";}'),(45,2,'metaboxhidden_nav-menus','a:7:{i:0;s:20:\"add-post-type-blocks\";i:1;s:27:\"add-post-type-featured_item\";i:2;s:12:\"add-post_tag\";i:3;s:15:\"add-post_format\";i:4;s:20:\"add-block_categories\";i:5;s:26:\"add-featured_item_category\";i:6;s:21:\"add-featured_item_tag\";}');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `wp_users` WRITE;
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` VALUES (1,'admin','$P$BVEi670zUtpmsAQ7laBUGsEalPMdEq/','admin','sonus90@outlook.com','http://demoweblinks.in/ping','2022-01-28 12:05:43','',0,'admin'),(2,'ping-user','$P$BatDu8pNINMLmsktWNNrLqjGcjblN81','ping-user','brains@amaeka.com','','2022-05-10 06:46:50','1652165210:$P$Bjmoj95apGZnPrJWrHjURevryOarXt0',0,'ping-user');
/*!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:56:33
